UITableView scrolling is not smooth

前端 未结 6 594
囚心锁ツ
囚心锁ツ 2021-02-01 20:41

I have the smooth scrolling issue at my UITableView with UITableViewCell which contains UIImageView. Similar issues could be found all over the StrackOverflow but none of the pr

6条回答
  •  抹茶落季
    2021-02-01 20:48

    I don't have enough rep to comment, So here's an answer which helped my tableview scrolling performance:

    • Make the tableview height larger than the viewable window. Cells will load "off screen" and helps improve scroll smoothness.
    • Do your image processing in the following method: -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

    Those two tricks got my table flowing really nice. I'm getting my image data from an API service and AFNETWORKING has an awesome image loader, but not necessary for you since images are in the bundle.

提交回复
热议问题