爲了避免發泄任何我可能有我很想知道這裏周圍的人已經使用(代碼段明智)在其應用程序中播放短小音頻效果?現在我正在嚴格處理iOS 5 ARC項目,我之前的方法被禁止並引發錯誤。播放短音頻效果
那麼,如何才能在iOS 5和Objective-C的應用程序中簡單播放一個小的1秒音頻文件呢?
感謝任何積極貢獻的人!
編輯:下面是發送帶有ARC錯誤和iOS 5
NSString *soundPath=[[NSBundle mainBundle] pathForResource:@"swoosh" ofType:@"caf"];
SystemSoundID sound;
AudioServicesCreateSystemSoundID((__bridge_retained CFURLRef)[NSURL fileURLWithPath:soundPath],&sound);
AudioServicesPlaySystemSound(sound);
代碼爲您的以前的方法,請! – ZhangChn 2012-01-31 16:12:46
NSString * soundPath = [[NSBundle mainBundle] pathForResource:@「swoosh」ofType:@「caf」]; SystemSoundID聲音; 聲音;音頻服務創建系統聲音ID((__ bridge_retained CFURLRef)[NSURL fileURLWithPath:soundPath],&sound); AudioServicesPlaySystemSound(sound); – Brayden 2012-01-31 16:39:12