There is no such method, as sd_setShowActivityIndicatorViewand sd_setIndicatorStylein SDWebImage> UIImageView+WebCache.h, so he does not see visible for @interface UIImageViewannounces selector sd_setShowActivityIndicatorViewand sd_setIndicatorStyleis not detected
Use the following instead.
[cell.cellImgView setShowActivityIndicatorView:YES]
[cell.cellImgView setIndicatorStyle:UIActivityIndicatorViewStyleGray]
These methods are in UIImageView+WebCache.h
- (void)setShowActivityIndicatorView:(BOOL)show;
- (void)setIndicatorStyle:(UIActivityIndicatorViewStyle)style;
source
share