我使用活动指示器视图创建自定义单元格使用 SDWebImage 我在下载图像时隐藏了活动指示器
[customCell.userPhotoImageView setImageWithURL:[NSURL URLWithString:[[thisNotify user]imageURL]] placeholderImage:nil completed:^
(UIImage *image, NSError *error, SDImageCacheType cacheType)
{
customCell.activityView.hidden = TRUE;
}];
但是我执行了我看这个警告的代码
在此块中强烈捕获“customCell”可能会导致保留周期
谢谢