如何让iPhone振动?

时间:2011-07-22 03:24:15

标签: iphone objective-c cocoa-touch

我正在使用此代码购买获取音频线的编译错误。有谁知道为什么?

- (void)handleTimer:(NSTimer *)timer 
{
    self.counter--;
    self.timerLabel.text = [NSString stringWithFormat:@"%ld", self.counter];
    if (self.counter == 0)
    {
        AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
    }
}

1 个答案:

答案 0 :(得分:4)

您很可能忘记为其导入框架

#import <AudioToolbox/AudioToolbox.h>