如何以编程方式启动和停止歌曲?

时间:2011-08-22 08:54:34

标签: iphone objective-c cocoa-touch ios4

  

可能重复:
  How to play a song from the itunes library in iphone

在我的应用中,

我想从iPhone库中获取歌曲。

想要播放那首歌。

如何获取歌曲?

如何在我的应用程序中以编程方式启动和停止歌曲?

1 个答案:

答案 0 :(得分:1)

  AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL URLWithString:recordFile] error:nil];
            [player prepareToPlay];
   [player play];

    [player pause];