如何将 NSIndexPath 转换为 NSInteger?
Posted
技术标签:
【中文标题】如何将 NSIndexPath 转换为 NSInteger?【英文标题】:How to convert NSIndexPath to NSInteger? 【发布时间】:2011-12-18 06:30:19 【问题描述】:我已搜索并找到此问题的先前答案here。问题是标记为解决方案的答案不起作用。在我的 tableView:didSelectRowAtIndexPath: 方法中,我有
NSInteger *currentRow = indexPath.row;
它给了我警告'不兼容的整数到指针转换初始化'NSInteger *'(又名'int *')使用'NSInteger'(又名'int')类型的表达式。
任何帮助表示赞赏!
【问题讨论】:
【参考方案1】:NSInteger 不是一个类,所以它不需要星号:
NSInteger currentRow = indexPath.row;
【讨论】:
也非常有用的是通过将 index.row 分配给 yourView.tag 或 yourLabel.tag 来跟踪 index.row,这样您就可以访问来自自定义单元格等的信息......所以它就是 yourTextView。 tag = indexPath.row以上是关于如何将 NSIndexPath 转换为 NSInteger?的主要内容,如果未能解决你的问题,请参考以下文章
如何将 NSIndexPath 转换为 NSInteger?