在我通过使用从我的服务器中两次提取相同的图像之前,它工作得很好,但我需要减少网络使用
NSString *friendAvatar = [NSString stringWithFormat:@"%@%@%@", @"http://www.mydomain.com/images/users/", myWords[0], @".jpg"];
[imageFile setImageWithURL:[NSURL URLWithString:friendAvatar]];
[bgImageFile setImageWithURL:[NSURL URLWithString:friendAvatar]]; //this is a zoomed in version of the friends photo
现在我正在使用这种方式来尝试提取已经拉出照片的 UIImageView 的图像,这样我就不必拉两次同一张照片......
NSString *friendAvatar = [NSString stringWithFormat:@"%@%@%@", @"http://www.mydomain.com/images/users/", myWords[0], @".jpg"];
[imageFile setImageWithURL:[NSURL URLWithString:friendAvatar]];
[bgImageFile setImage:imageFile.image];
尝试使用我的新方法时。什么都没发生。调试器中没有错误,背景图像只是空白。