2012-02-23 69 views
0

嗨,我有一些圖像存儲在緩存中。我需要將緩存圖像存儲在我的目錄中。從iPhone中的遠程服務器緩存圖像

我嘗試以下方法EgoImageview及以下兩種方法

- (UIImage *) getImage: (NSString *) ImageURLString; 
- (void) cacheImage: (NSString *) ImageURLString; 

但在這個緩存是不正確的方式

隨後進行是cache image fn

請代碼建議我一些更好的方法

回答

1

試試這個 -

NSString *imgURL = @"imagUrl"; 

NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:imgURL]]; 

[imgView setImage:[UIImage imageWithData:data]];