我目前正在研究聊天应用程序。
我做了一个chatCellView和一个 Controller 。
我已经通过编码包含播放按钮的音频进行了查看。
现在我的问题是我无法识别正在播放哪个音频文件。需要一些有关如何实现这一目标的指导。

谢谢。

最佳答案

在CellforRowAtIndexPath中

AudioRecieveCell * cellRecieve =复用标识符= @“AudioRecieveCell”;
cellRecieve = [tableView dequeueReusableResableCellWithIdentifier:reuseIdentifier];

        cellRecieve.btnPlayResOutlet.tag=indexPath.row;


        [cellRecieve.btnPlayResOutlet addTarget:self action:@selector(playResAudioPressed:) forControlEvents:UIControlEventTouchUpInside];

        return cellRecieve;

现在做一个选择器
-(void)playResAudioPressed:(id)发送器{

UIButton btnSender =(UIButton)sender;
在这里写下你的逻辑

}

关于ios - 无法识别播放哪个音频文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24510072/

10-10 02:27