UITableViewCell 图片加载

来源:互联网 发布:阿里云服务器重做系统 编辑:程序博客网 时间:2024/06/05 11:28

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

{

    

   //SyChoosePersonListCell *cell = (SyChoosePersonListCell *)[self tableView:tableView cellForRowAtIndexPath:indexPath];

   //return cell.cellHeight;

   return 55;

}


这样写会导致

多调了一次


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath


在图片加载的时候 

会导致速度过慢


原创粉丝点击