美文网首页iOS开发札记
iOS TableView Cell Frame

iOS TableView Cell Frame

作者: 小布走慢点 | 来源:发表于2016-06-20 17:08 被阅读25次

    Frame

    - (void)setFrame:(CGRect)frame{
      frame.origin.y + = 10;//整体下移
      frame.size.height - = 10;//tabeview cell 间隔为10 (自己剪短10)
      [super setFrame:frame];
    }
    

    刷新

    //一个section刷新    
    NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];    
    [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];    
    //一个cell刷新    
    NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];    
    [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];  

    相关文章

      网友评论

        本文标题:iOS TableView Cell Frame

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