美文网首页
xib cell高度自适应问题

xib cell高度自适应问题

作者: 夜未殇 | 来源:发表于2017-06-29 14:35 被阅读0次
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath  
{  
    if (indexPath.row == 0) {  
        return 60;  
    }  
      
    self.articleTableView.rowHeight = UITableViewAutomaticDimension;  
    self.articleTableView.estimatedRowHeight = 240;  
    return self.articleTableView.rowHeight;  
  
}

相关文章

网友评论

      本文标题:xib cell高度自适应问题

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