作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
错误信息:
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/
我是一名优秀的程序员,十分优秀!