hi i want read one << mp3 url >> minus 30 sec with button in iphone can i work this with audio foundation
this is my code but its not work
NSString *str = "my url";
NSURL *file =[[NSURL alloc]initFileURLWithPath:str];
AVAudioPlayer *p = [[AVAudioPlayer alloc]initWithContentsOfURL:file error:nil]; [file release];
self.player = p; [p release]; [player prepareToPlay]; [player setDelegate:self];