I want to play mp3 file file when user select a collection view custom cell. but it is not playing . here is the code i have written for this purpose -(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];
}