在 modalViewController 中使用 indexPath.row 时发生崩溃
我遇到了 indexPath.row 的问题,当我尝试访问此变量时,我的应用程序崩溃了,并且在控制台上没有收到任何错误:(
代码是这样的:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Navigation logic may go here. Create and push another view controller.
NSLog(@"%@", indexPath); //works fine
NSLog(@"%@", indexPath.row); //crash
}
我在 ModalViewController 中使用它。
I've a problem with indexPath.row, when I try to access this variable my app crashes and I get no errors on the console :(
the code is this:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Navigation logic may go here. Create and push another view controller.
NSLog(@"%@", indexPath); //works fine
NSLog(@"%@", indexPath.row); //crash
}
and I'm using it inside a ModalViewController.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
而不是
这是因为,indexpath.row 是一个整数,您必须使用 %d 。
You have to use
instead of
This is because, indexpath.row is an integer and you have to use the %d .