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

来源:互联网 发布:打补丁用什么软件 编辑:程序博客网 时间:2024/05/13 14:32

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 ];


原创粉丝点击