i tried to play an audio file from internet using AVAudioplayer but there is no response from UIView but if i m to play an mp3 file from bundle it works ..cud u guys help me out below is the code...
-(IBAction)playPause:(id)sender
页: 1
NSURL *url=[NSURL URLWithString:@"http://www.1040communications.net/sheeba/stepheni/iphone/images/today.mp3"];
NSError *error;
player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
if (!player) NSLog(@"Error: %@", error);
[player prepareToPlay];
[player play];
iii