作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath(NSIndexPath *)indexPath
{
NSLog(@"%@", indexPath);
NSLog(@"%@", cell.textLabel.text);
}
但在多个表格 View 的情况下我无法选择表格单元格对于表 1:
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath(NSIndexPath *)indexPath
{
if(tableview==table1)
NSLog(@"%@", cell.textLabel.text);
}
if(tableview==table2)
{
NSLog(@"%@", cell.textLabel.text);
}
}
最佳答案
当您在 Storyboard 中添加您的 uitableview 时,定义唯一的标签编号以指定表格。假设第一个 tableview 有标签 1,第二个有标签 2:
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath(NSIndexPath *)indexPath
{
if(tableView.tag==1)
NSLog(@"tableView 1");
}else{
NSLog(@"tableView 2");
}
}
关于ios - 如何在 iOS 的多 TableView 中使用 didSelctRowAtIndexPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32177909/
我是一名优秀的程序员,十分优秀!