Show activity indicator in SDWebImage

前端 未结 18 1592
独厮守ぢ
独厮守ぢ 2021-01-30 09:20

I\'m using SDWebView image and i want to show an Activity Indicator as placeholder, while fetching the image from remote.

I tried Malek\'s answer here How to show an act

18条回答
  •  独厮守ぢ
    2021-01-30 09:42

    This is how you do it:

    [imageView setIndicatorStyle:UIActivityIndicatorViewStyleWhite];
    [imageView setShowActivityIndicatorView:true];
    [imageView sd_setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"defaultl_image"]];

提交回复
热议问题