0
無論出於何種原因,我沒有UIImage出現在我的桌面上。我使用此代碼作爲調試手段。但是,我敢肯定,由於調試器中的UIImage不爲null,因此我正在接收圖像。UIImage不寫入或出現在桌面上
UIImage *imgageProfile = [UIImage imageWithData:
[NSData dataWithContentsOfURL:
[NSURL URLWithString: sUrlPic]]];
// Use this code to debug images
NSURL *aLocalURL = [NSURL URLWithString:@"file:///Users/snuffles753/Desktop/"];
NSData *imageData = UIImagePNGRepresentation(imgageProfile);
[imageData writeToURL:aLocalURL atomically:YES];