1、通過(guò)NSData加載圖片:
[photoBtn setImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrl]]] forState:UIControlStateNormal];
2、通過(guò)GCD加載:
[photoBtn setImage:[UIImage imageNamed:@"icon_Image_Placeholder"] forState:UIControlStateNormal]; ?//!< 加這句可以設(shè)置button占位圖片
UIImage *img = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrl]]];
? ? ? dispatch_async(dispatch_get_main_queue(), ^{
? ? ? ? ? if(img) {
? ? ? ? ? ? [photoBtnsetImage:imgforState:UIControlStateNormal];
? ? ? ? ? ?}
? ? ? ?});
?});
3、通過(guò)SDWebImage加載,帶緩存:
[photoBtn.imageView sd_setImageWithURL:[NSURL URLWithString:imageUrl] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
? ? ? ?if(image) {
? ? ? ? ? ?[photoBtn setImage:image forState:UIControlStateNormal];
? ? ? ? }
}];