我想存储一个 NSIndexPath 一个 NSDictionaries 数组供以后比较。
我知道我可以通过将 2 个数字存储为 2 个键来做到这一点
NSNumber *selRow = [[NSNumber alloc] initWithInteger:indexPath.row];
NSNumber *selSection = [[NSNumber alloc] initWithInteger:indexPath.section];
但是那样我不能一次过滤数组。
有没有办法直接存储(并取回)NSIndexPath ?
提前致谢。
Best Answer-推荐答案 strong>
为什么不直接存储呢? NSIndexPath 是一个对象,所以没关系。您可以在 documentation 上查看继承自 NSObject 。
关于objective-c - 在 NSDictionary 中存储 indexPath,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/10546947/
|