美文网首页
iOS技术文档No.13 AppKit_NSIndexPath

iOS技术文档No.13 AppKit_NSIndexPath

作者: 孤独雪域 | 来源:发表于2017-07-24 14:58 被阅读11次

    NSIndexPath 是一个对象,它用来表示一个树形的记录地址。
    提到UITableView,就必须的说一说NSIndexPath。UITableView声明了一个NSIndexPath的类别,主要用 来标识当前cell的在tableView中的位置,该类别有section和row两个属性,前者标识当前cell处于第几个section中,后者代 表在该section中的第几行。
      UITableView只能有一列数据(cell),且只支持纵向滑动,当创建好的tablView第一次显示的时候,我们需要调用其reloadData方法,强制刷新一次,从而使tableView的数据更新到最新状态。

    NSIndexPath的创建

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    
    -(void)cellImageDidLoad:(NSIndexPath *)indexPath image:(UIImage *)image
    {
        UITableViewCell *cell = [wqTablecellForRowAtIndexPath:indexPath];
        cell.imageView.image = image;
    }
    

    相关文章

      网友评论

          本文标题:iOS技术文档No.13 AppKit_NSIndexPath

          本文链接:https://www.haomeiwen.com/subject/misbkxtx.html