0
В следующем коде отсутствует ошибка, но она по-прежнему не воспроизводит звук.
Что я делаю неправильно?Аудио не воспроизводится при нажатии кнопки
-(IBAction)buttonPressed:(id)sender
{
UIAlertView *alert = [[UIAlertView alloc]initWithTitle: @"ABC"
message: @" ABC"
delegate: self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"OK",nil];
[alert show];
AVAudioPlayer *audioplayer;
NSString *audiopath = [[NSBundle mainBundle] pathForResource:@ "1Abhi Kuch Dino Se.mp3" ofType:@ "mp3"];
NSURL *audioURL = [NSURL fileURLWithPath:audiopath];
audioplayer = [[AVAudioPlayer alloc]initWithContentsOfURL:audioURL error:nil];
[audioplayer play];
}