IOS初级:SDWebImage

简单用法


#import "ViewController.h"
#import "SDWebImage/UIImageView+WebCache.h"

@interface ViewController ()

@property (strong, nonatomic) IBOutlet UIImageView *img;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    NSURL *imgPath = [NSURL URLWithString:@"http://demo.com/app/images/5.jpg"];
    [self.img setImageWithURL:imgPath];
}





posted on 2015-10-01 00:23  阮減显  阅读(82)  评论(0编辑  收藏  举报

导航