I create the custom cell with the activity indicator view With using the SDWebImage I hidden the activity indicator when the image is downloaded
[customCell.userPhotoImageView setImageWithURL:[NSURL URLWithString:[[thisNotify user]imageURL]] placeholderImage:nil completed:^
(UIImage *image, NSError *error, SDImageCacheType cacheType)
{
customCell.activityView.hidden = TRUE;
}];
But I execute the code I look this warning
Capturing 'customCell' strongly in this block is likely to lead to a retain cycle
Thanks