动态设置uitableview高度,参考

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

{

//    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

//    return cell.contentView.frame.size.height;

    UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];

    return cell.frame.size.height;

}

不能直接用UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; 

posted on 2015-10-13 17:45  🌞Bob  阅读(183)  评论(0编辑  收藏  举报

导航