nsindexpath专题

【Foundation-36-1】#import Foundation/NSIndexPath.h树结构

NSIndexPath 让你精确指定一个树结构 data structure 里面的某个节点的数据 比如你有一个 NSArray, 里面很多节点,每个节点又是一个 NSArray,每个节点的这个里面又是一个NSArray,然后下面又是一个  NSArray 这样简单说起来,你有一个四层的 NSarray ,每层下面都有好多个 NSArray。 然后你造一个  NSIndexPath

[iOS]NSIndexPath初始化

[iOS]NSIndexPath初始化 初始化 NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:1];UITableViewCell *selectCell = (UITableViewCell *) [_tableView cellForItemAtIndexPath:indexPath];刷新