ユーザーがコレクション ビューのカスタム セルを選択したときに mp3 ファイルを再生したい。しかし、それは再生されていません。ここに私がこの目的のために書いたコードがあります -(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"cell selected ");
AVAudioPlayer * audioPlayer;
NSString *path = [[NSBundle mainBundle] pathForResource:@"bismillah" ofType:@"mp3"];
NSURL *audioUrl=[NSURL fileURLWithPath:path];
audioPlayer=[[AVAudioPlayer alloc] initWithContentsOfURL:audioUrl error:nil];
//audioPlayer.delegate=self;
[audioPlayer play];
// cell.backgroundColor = [UIColor blueColor];
}