0
我正在使用Json解析的應用程序。在json解析的幫助下,我得到了保存在字符串中的照片url。在我的手機顯示圖片我用這個代碼如何將圖像保存在主目錄中?
NSString *strURL=[NSString stringWithFormat:@"%@", [list_photo objectAtIndex:indexPath.row]];
NSData *imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: strURL]];
CGRect myImage =CGRectMake(13,5,50,50);
UIImageView *imageView = [[UIImageView alloc] initWithFrame:myImage];
[imageView setImage:[UIImage imageWithData: imageData]];
[cell addSubview:imageView];
現在prblem是,當我回去還是那麼前頁我已經等待幾秒鐘回來的同樣的觀點。現在我希望當我第一次使用應用程序時,我等待那個屏幕,否則從主目錄中獲取圖像。我如何將這些圖像保存在我的主目錄中?如何從主目錄訪問?
看看[這裏](http://stackoverflow.com/questions/2625702/caching-images-in-iphone-app)有幫助 – Saran