我需要帮助才能在按钮上设置计时器。现在我有这个代码,
- (IBAction)btnPlaySound:(id)sender {
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileUrlRef;
soundFileUrlRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"", CFSTR(""), NULL);
UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileUrlRef, &soundID);
AudioServicesPlaySystemSound(soundID);
}
我希望用户每 2 秒只能点击一次此按钮,我必须插入一个NSTimer
我认为但以哪种方式?
谢谢