IOS 播放音乐实例 .

来源:互联网 发布:网店优化技巧 编辑:程序博客网 时间:2024/06/15 22:44

- (BOOL) prepAudio

{

NSError *error;

NSString *path = [[NSBundlemainBundle] pathForResource:@"test"ofType:@"mp3"];

if (![[NSFileManagerdefaultManager] fileExistsAtPath:path]) 

{

returnNO;

}

self.player = [[AVAudioPlayeralloc] initWithContentsOfURL:[NSURLfileURLWithPath:path] error:&error];

if (!self.player)

{

NSLog(@"Error: %@", [errorlocalizedDescription]);

returnNO;

}

[self.playerprepareToPlay];

returnYES;

}

- (void) play

{

[self.playerplay];

}

- (void) pause

{

[self.playerpause];

}

- (void) stop

{

[self.playerstop];

}

原创粉丝点击