我在我的应用程序中使用 SDWebImage。我的视图控制器中有几个 UIImageView,它们都使用 setImageWithURL: 方法(在 UIImageView+WebCache.m 中)通过 URL 加载图像。应该加载三张图片,两张大约520kb,小一张是180kb。当我运行它时,它会收到内存警告并崩溃,我对此一无所知。谁能帮帮我,谢谢!
这是我的代码:
NSDictionary *data = [respDic objectForKey:@"data"];
[self.topLeft setImageWithURL:[NSURL URLWithString:[data valueForKey:@"tr_cu_1"]]];
[self.bottomLeft setImageWithURL:[NSURL URLWithString:[data valueForKey:@"tr_cu_2"]]];
[self.bottomRight setImageWithURL:[NSURL URLWithString:[data valueForKey:@"tr_cu_3"]]];