我已经获取了一个显示在 tableview 中的数组的索引,我想在索引中播放didSelectRowAtIndexpath
相同的索引。
MPMediaItem *item = [arrAnand objectAtIndex:3];
NSURL *url = [item valueForProperty:MPMediaItemPropertyAssetURL];
AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithURL:url];
player2 = [[AVPlayer alloc] initWithPlayerItem:playerItem];
[player2 play];
在这里我通过了 3 ..但我需要匹配的索引以在选择行中选择
帮助!!