我正在使用此代码购买获取音频线的编译错误。有谁知道为什么?
- (void)handleTimer:(NSTimer *)timer
{
self.counter--;
self.timerLabel.text = [NSString stringWithFormat:@"%ld", self.counter];
if (self.counter == 0)
{
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}
}
答案 0 :(得分:4)
您很可能忘记为其导入框架
#import <AudioToolbox/AudioToolbox.h>