2

我想存储一个NSIndexPath数组NSDictionaries供以后比较。

我知道我可以通过将 2 个数字存储为 2 个键来做到这一点

NSNumber *selRow = [[NSNumber alloc] initWithInteger:indexPath.row]; 
NSNumber *selSection = [[NSNumber alloc] initWithInteger:indexPath.section];

但是这样我就不能一次过滤过滤器数组。

有没有办法直接存储(并取回)NSIndexPath

提前致谢。

4

1 回答 1

4

为什么不直接保存呢?NSIndexPath是一个对象,所以没关系。您可以在继承NSObject.

于 2012-05-11T07:08:49.347 回答