AVAudioPlayer 施用小示例

AVAudioPlayer 应用小示例NSString *soundPath[[NSBundle mainBundle] pathForResource:NSLocalizedStrin

AVAudioPlayer 应用小示例

NSString *soundPath=[[NSBundle mainBundle] pathForResource:NSLocalizedStringFromTable([_dictionary objectForKey:@"sound"],[defaults stringForKey:@"language"],@"提示") ofType:@"mp3"];
??NSURL *soundUrl=[NSURL fileURLWithPath:soundPath];
??_player=[[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:nil];

?

NSString *soundPath=[[NSBundle mainBundle] pathForResource:@"sound" ofType:@"mp3"];
??NSURL *soundUrl=[NSURL fileURLWithPath:soundPath];
??_player=[[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:nil];