如何从iPhone中的多个表中获取特定表的indexPath
您好,我在单个视图中使用 2 个表,并且想要获取表的索引路径。我用 下面的代码来获取索引路径。但无论我访问什么表,categoryId 都会受到影响,而不是其他东西。请帮忙...
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(tableView=categoryTblView)
{
categoryId=indexPath.row;
NSLog(@"categoryId=%d",categoryId);
}
else if(tableView=regionTblView)
{
regionId=indexPath.row;
NSLog(@"regionId=%d",regionId);
}
}
Hi i m using 2 tables in a single view and want to get the indexpath of the tables. I use
the below code to get the indexpath. but stil categoryId getting effected whatever table i access not the other thing. Please help...
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(tableView=categoryTblView)
{
categoryId=indexPath.row;
NSLog(@"categoryId=%d",categoryId);
}
else if(tableView=regionTblView)
{
regionId=indexPath.row;
NSLog(@"regionId=%d",regionId);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在这里测试相等性,您需要使用
==
而不是单个等号(用于赋值)。所以代码应该是:
To test equality here, you need to use
==
instead of a single equal sign (which is for assignment).So the code should be: