Как добавить аудиоплеер в приложение для iphone - PullRequest
0 голосов
/ 17 января 2012

Я хочу добавить аудиоплеер в свое приложение. Я понятия не имею об этом.Я хочу воспроизводить песни и создавать плейлисты ... как я могу это сделать?

Ответы [ 3 ]

0 голосов
/ 17 января 2012

перейдите по следующим ссылкам, это поможет вам -
http://mobileorchard.com/easy-audio-playback-with-avaudioplayer/
http://mobile.tutsplus.com/tutorials/iphone/ios-sdk_background-audio/

0 голосов
/ 17 января 2012

сделать как показано ниже.

#import <AVFoundation/AVFoundation.h>

NSString *musicFilePath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"mp3"];
NSURL *musicURL = [[NSURL alloc] initFileURLWithPath:musicFilePath];

AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:musicURL error:nil];
[player prepareToPlay];
[player play];
0 голосов
/ 17 января 2012

Вы можете найти учебник по следующей ссылке: - http://mobileorchard.com/easy-audio-playback-with-avaudioplayer/

или

http://psychicparrotgames.com/?p=33

или

http://www.codeproject.com/KB/iPhone/abPlayer_iPhone.aspx

Надеюсь, это поможет вам.

...