- (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
在图片加载的时候
会导致速度过慢
在使用Swift进行iOS开发时,遇到图片加载导致应用运行缓慢的问题。通过优化图片加载方式,减少不必要的调用,实现提高应用加载速度的目标。
5803

被折叠的 条评论
为什么被折叠?



