gpt4 book ai didi

objective-c - 如何从 int 创建 NSIndexPath?

转载 作者:技术小花猫 更新时间:2023-10-29 10:28:27 26 4
gpt4 key购买 nike

错误信息:

cast of 'int' to "NSIndexPath *' is disallowed with ARC

代码:

NSInteger CurrentIndex;

[self tableView:(UITableView *)horizontalTableView1 didSelectRowAtIndexPath:(NSIndexPath *)int_CurrentIndex];

如何修复此错误?

最佳答案

您不能将 int 变量直接转换为 NSIndexPath。但是您可以从 int 变量创建一个 NSIndexPath

你需要一个 section 索引和 row 索引来创建一个 NSIndexPath。如果您的 UITableView 只有一个 section,那么:

Objective-C

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:rowIndex inSection:0];

swift

let indexPath: NSIndexPath = NSIndexPath(forRow: rowIndex, inSection: 0)

swift 4

let indexPath = IndexPath(row: rowIndex, section: 0)

关于objective-c - 如何从 int 创建 NSIndexPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12997481/

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