gpt4 book ai didi

ios - 如何在 iOS 的多 TableView 中使用 didSelctRowAtIndexPath?

转载 作者:行者123 更新时间:2023-11-28 21:40:42 27 4
gpt4 key购买 nike

- (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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com