我想存储NSIndexPath
一个NSDictionaries
数组,以便稍后进行比较。
我知道我可以通过将2个数字存储为2个键来实现它
NSNumber *selRow = [[NSNumber alloc] initWithInteger:indexPath.row];
NSNumber *selSection = [[NSNumber alloc] initWithInteger:indexPath.section];
但是这样我就无法在一次运行中过滤数组过滤器。
有没有办法直接存储(并取回)NSIndexPath
?
提前致谢。