iOS 关于egoImageView类库的使用方法 和小技巧

egoImageView 是网络大神的一个超好类库 可是 很多人都用 SdWebimage   这个东西用的人却不多 


其实个人感觉 这个类库还是蛮好用的 

简单说下自己的使用心得 


首先加载一个网络图片 

    EGOImageView *imageView = [[[EGOImageViewalloc]initWithFrame:CGRectMake(kBaseViewOriginX,kBaseViewOriginY, kBaseVieWidth,kBaseViewHeight) ] autorelease];

    imageView.imageURL = [NSURLURLWithString:@"http://imgsrc.baidu.com/forum/pic/item/9d82d158ccbf6c811c42177ebc3eb13533fa402a.jpg"];

    [self.viewaddSubview:imageView];

    

这样就可以了  


//清理缓存~ 

    [[EGOCachecurrentCache] clearCache];

//获得 下载好的图片 

    UIImage *getImage = [[EGOImageLoadersharedImageLoader]imageForURL:[NSURLURLWithString:@"http://imgsrc.baidu.com/forum/pic/item/9d82d158ccbf6c811c42177ebc3eb13533fa402a.jpg"]shouldLoadWithObserver:nil ];


你可能感兴趣的:(iOS 关于egoImageView类库的使用方法 和小技巧)