LoginSignup
9
9

More than 5 years have passed since last update.

iPhoneでバイブレーションを動かす

Last updated at Posted at 2012-06-28

以下のが一番楽らしい

#import <AudioToolbox/AudioToolbox.h>

if([[UIDevice currentDevice].model isEqualToString:@"iPhone"]) {
    AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}

see
http://stackoverflow.com/questions/4724980/making-the-iphone-vibrate

9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9