我想每次點擊圖片時都會發出聲音。 添加在 「鏈接框架和庫」 AudioToolbox 和在GameViewController.h 添加:播放音效Xcode 5
#import <AudioToolbox/AudioToolbox.h>
@interface GameViewController : UIViewController
{
SystemSoundID PlaySoundID;
}
- (IBAction)PlayAudioButton:(id)sender;
(與按鈕連接這一點)。
在GameViewController.m 補充一點:
- (void)viewDidLoad
{
NSURL *SoundURL = [NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"Sound" ofType:@"wav"]];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)SoundURL, &PlaySoundID);
}
- (IBAction)PlayAudioButton:(id)sender {
AudioServicesPlaySystemSound(PlaySoundID);
}
畢竟沒有工作沒有錯誤,但聲音不是沃金... 什麼問題?
謝謝。
感謝,但沒有工作.. 「使用未聲明的標識符AVAudioPlayer」 – neKuda