0
可能重複:
How to play a song from the itunes library in iphone如何以編程方式啓動和停止歌曲?
在我的應用程序,
我想從iPhone獲取庫的歌曲。
而且想播放那首歌。
我該如何取歌?
以及如何在我的應用中以編程方式啓動和停止歌曲?
可能重複:
How to play a song from the itunes library in iphone如何以編程方式啓動和停止歌曲?
在我的應用程序,
我想從iPhone獲取庫的歌曲。
而且想播放那首歌。
我該如何取歌?
以及如何在我的應用中以編程方式啓動和停止歌曲?
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL URLWithString:recordFile] error:nil];
[player prepareToPlay];
[player play];
[player pause];
簡易代碼。 – Devang