2013-06-18 90 views
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]; 

} 

回答

0

好吧,嘗試小時後我設法解決issue.It很難相信但我所做的是 重命名(不轉換)的MP3文件爲M4A和將源代碼中的相應代碼更改爲m4a。那就是它...