我想存储一个NSIndexPath
数组NSDictionaries
供以后比较。
我知道我可以通过将 2 个数字存储为 2 个键来做到这一点
NSNumber *selRow = [[NSNumber alloc] initWithInteger:indexPath.row];
NSNumber *selSection = [[NSNumber alloc] initWithInteger:indexPath.section];
但是这样我就不能一次过滤过滤器数组。
有没有办法直接存储(并取回)NSIndexPath
?
提前致谢。