gpt4 book ai didi

ios - 在 iOS tableview 中的类型为 'row' 的对象上找不到属性 'NSIndexPath *'

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:27:04 31 4
gpt4 key购买 nike

我试图在 iOS 中借助“didSelectRowAtIndexPath”获取项目的行 ID。代码:

   - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{  

indexPathRow=indexPath.row;

self.recordIdToEdit = [[[deviceNameArray objectAtIndex:indexPath.row] objectAtIndex:0] intValue];
NSLog(@"Item selected..%d", self.recordIdToEdit);

[self performSegueWithIdentifier:@"DetailsViewController" sender:nil];

}

调试时出现以下错误:

 (lldb) po [deviceNameArray objectAtIndex:indexPath.row]  
error: property 'row' not found on object of type 'NSIndexPath *'
error: 1 errors parsing expression
(lldb) po indexPathRow
<nil>

这里出了什么问题? deviceNameArray 是一个字符串数组,包含从 sqlite 数据库中获取的结果。

最佳答案

在调试时试试这个,我们需要发送 int 值

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{  

int index=indexPath.row;

self.recordIdToEdit = [[deviceNameArray objectAtIndex:index]];
NSLog(@"Item selected..%d", self.recordIdToEdit);

[self performSegueWithIdentifier:@"DetailsViewController" sender:nil];

}

关于ios - 在 iOS tableview 中的类型为 'row' 的对象上找不到属性 'NSIndexPath *',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27010479/

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