0
我有一個問題。以下代碼無法管理播放任何內容。根據編譯器沒有錯誤。我已經建立了必要的聯繫。事實上,如果我使用AudioServicesPlaySystemSound
,而不是AVAudioPlayer
,那麼一切正常。如果有人能幫助我,我會很高興。因爲我需要爲我的項目使用AVAudioPlayer,並且我嘗試了我所知道的一切。AVAudioPlayer不會工作
感謝
.h文件中
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import <AudioToolbox/AudioToolbox.h>
@property(strong,nonatomic) AVAudioPlayer *audioPlayer;
- (IBAction)cal:(id)sender;
.m文件
- (IBAction)cal:(id)sender {
NSString *path = [[NSBundle mainBundle] pathForResource:@"demo" ofType:@"mp3"];
NSURL *pathURL = [NSURL fileURLWithPath : path];
audioPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:pathURL error:nil];
[audioPlayer play];
}