作者:shengxin11 | 来源:互联网 | 2023-06-01 08:36
如题,我在UITableView的dataSource中返回Cell的代码如下:1234567- (UITableViewCell *)tableView:(UITableView *)tableVi
如题,我在UITableView的dataSource中返回Cell的代码如下:
1 2 3 4 5 6 7
| - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
LLDCommentCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIDMyComments forIndexPath:indexPath];
[cell.imageView sd_setImageWithURL:url];
return cell;
} |
有一个问题是,当快速滑动界面时,可能这个cell只是一闪而过,而此代码却仍然要加载这些图片。我希望能够在tableView停止滚动时,优先加载当前显示的cell的图片。请问怎么做比较合适