如题,我在UITableView的dataSource中返回Cell的代码如下:-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath{LLDCommentCell*cell=[tableViewdequeueReusableCellWithIdentifier:kCellIDMyCommentsforIndexPath:indexPath];[cell.imageViewsd_setImageWithURL:url];returncell;}有一个问题是,当快速滑动界面时,可能这个cell只是一闪而过,而此代码却仍然要加载这些图片。我希望能够在tableView停止滚动时,优先加载当前显示的cell的图片。请问怎么做比较合适
添加回答
举报
0/150
提交
取消