如何以编程方式启动和停止歌曲? [重复]

问题描述 投票:0回答:1

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

在我的应用中,

我想从iPhone库中获取歌曲。

并希望播放那首歌。

我该如何获取歌曲?

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

iphone objective-c cocoa-touch ios4
1个回答
1
投票
  AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL URLWithString:recordFile] error:nil];
            [player prepareToPlay];
   [player play];

    [player pause];
© www.soinside.com 2019 - 2024. All rights reserved.