专栏名称: Adrenine
iOS开发
目录
相关文章推荐
半月谈  ·  “袁老师,我来看您了……” ·  22 小时前  
底线思维  ·  中国的人类发展指数,谁说了算? ·  22 小时前  
侠客岛  ·  费东斌被查 ·  2 天前  
政事儿  ·  刘同学,婉拒资助 ·  3 天前  
51好读  ›  专栏  ›  Adrenine

iOS笔记之UITableView自动计算cell高度

Adrenine  · 掘金  ·  · 2017-12-13 08:46

正文

请到「今天看啥」查看全文


- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString *cellReuseId = [self getReuseIdWithIndexPath:indexPath];  //获取cell id
    CGFloat height = [tableView fd_heightForCellWithIdentifier:cellReuseId cacheByIndexPath:indexPath configuration:^(id cell) {
        [self configureCell:cell indexPath:indexPath];  //对cell进行赋值
    }];
    return






请到「今天看啥」查看全文