无论出于何种原因,我的桌面上都没有出现 UIImage。我使用这段代码作为调试手段。但是,我很确定我正在接收图像,因为调试器中的 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];