美文网首页
tabbleview修改指定cell上的属性

tabbleview修改指定cell上的属性

作者: 一只不会飞的小艳子 | 来源:发表于2017-08-31 13:52 被阅读0次

    //根据指定的indexpath获取该cell上的属性

    NSIndexPath*indexPath = [NSIndexPathindexPathForRow:1inSection:0];

    MineTableViewCell*sectionCell = [myTableViewcellForRowAtIndexPath:indexPath];

    sectionCell.unitLabel.text=_defultUnit;

    获取view所在的cell 的indexpath

    - (NSIndexPath*)currentCellIndexPath:(UIView*)view

    {

    UIView* obj = view;

    while(![objisKindOfClass:[MessageCellclass]]) {

    obj = obj.superview;

    }

    MessageCell* cell = (MessageCell*)obj;

    NSIndexPath* indexPath = [myTableViewindexPathForCell:cell];

    returnindexPath;

    }

    相关文章

      网友评论

          本文标题:tabbleview修改指定cell上的属性

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