2010-09-20 35 views

Répondre

0

Utilisez cette fonction pour lire des sons

- (AVAudioPlayer *)getNoteFromFilename:(NSString *)name andoftype:(NSString *)type{ 
NSString *soundPath = [[NSBundle mainBundle] pathForResource:name 
                 ofType:type]; 
NSURL *fileURL = [NSURL fileURLWithPath:soundPath]; 
AVAudioPlayer *note = [[[AVAudioPlayer alloc] initWithContentsOfURL:fileURL 
                   error:nil] autorelease]; 
return note; 

et u peut appeler la fonction comme celui-ci

self.btn_do = [self getNoteFromFilename:@"MusicFileName" andoftype:@"mp3"];