设置图片加载进度条

来源:互联网 发布:淘宝买vpn搜什么 编辑:程序博客网 时间:2024/06/08 09:20
[self.picImage sd_setImageWithURL:[NSURL URLWithString:self.model.pic] placeholderImage:PLACEPIC];        [self.picImage sd_setImageWithURL:[NSURL URLWithString:self.model.pic] placeholderImage:nil options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize) {            self.progress.progress = (double)receivedSize / expectedSize;        } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {            [self.progress removeFromSuperview];            self.progress = nil;        }];

0 0
原创粉丝点击