我想要的是当您点击表格中的任何单元格时,您转到另一个表格视图。我还需要您在视图中单击的每个不同单元格具有不同的字符串。但是我不知道
1)当你按下它时,如何将表格单元格链接到ViewController中的另一个表格视图 2)如何在View控制器中为您单击的每个不同单元格更改详细的Tableview(包括文本和音频文件)。
答案 0 :(得分:1)
要检测tableview中的任何行,请使用委托方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
}
答案 1 :(得分:0)
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
NSLog(@"index path cell row number =======%ld",(long)indexPath.row);//you can get the index number of that cell
NSLog(@"data of clicked cell====%@",[yourArray objectAtIndex:indexPath.row]);//here you can get the data of that cell
}