我已經在文件目錄與下面的代碼,並將其圖像後保存的圖像會出現在紀錄片目錄成功顯示圖像,其保存在文件目錄
UIImage *image =[[UIImage alloc ]init ];
image = [UIImage imageNamed:@"PlaceHolder.png"];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* path = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithString: @"PlaceHolder.png"] ];
NSData* data = UIImagePNGRepresentation(image);
[data writeToFile:path atomically:YES];
現在我想顯示在表視圖圖像 在我的表視圖某些圖像越來越爲什麼我用下面的代碼從Facebook網址這就是顯示
NSString *path = [[_arrayForTable valueForKey:@"URL"] objectAtIndex:[indexPath row]];
NSURL *url = [NSURL URLWithString:path];
AsyncImageView *imageView = [[[AsyncImageView alloc] init] autorelease];
imageView.frame = CGRectMake(0, -5, 45, 45);
imageView.imageURL=url;
_arrayForTable是迪科的陣列,它包括URL鏈接一些來自Facebook和一些來自documen牛逼目錄
現在我的問題是如下
**僅Facebook的圖片越來越顯示在表視圖,但文件沒有得到顯示目錄圖像**
我已經檢查的位置是圖像完全正確但現在顯示
從文檔目錄中放置圖像顯示代碼.. – 2013-03-26 07:49:29
我從來沒有使用過AsyncImageView類,但從我的經驗來看,應該使用[[UIImage alloc] initWithContentsOfFile:filePath]加載在目錄中找到的圖像。 – Cosmin 2013-03-26 07:49:58
但有些圖像正從url顯示,所以如何做到這一點是從網址和一些從uiimage? – user2189388 2013-03-26 07:51:43