在 modalViewController 中使用 indexPath.row 时发生崩溃

发布于 2024-09-27 09:22:29 字数 404 浏览 2 评论 0原文

我遇到了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟酒忠诚 2024-10-04 09:22:29

您必须使用

NSLog(@"%d", indexPath.row);

而不是

NSLog(@"%@", indexPath.row);

这是因为,indexpath.row 是一个整数,您必须使用 %d 。

You have to use

NSLog(@"%d", indexPath.row);

instead of

NSLog(@"%@", indexPath.row);

This is because, indexpath.row is an integer and you have to use the %d .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文