在我的应用程序中,我有一个 UIImageView 并且在运行时下载图像后,我正在通过 postnotification 更改图像,但图像没有改变,我检查了笔尖和任何地方的所有连接,它看起来对我来说很好,但图像仍然是没有人能在这方面帮助我。我的 uiimageview 在滚动视图中,而滚动视图在我的主视图中
在 postnotification 上调用了以下方法
- (void) refreshimages:(NSNotification *)notofication {
if ([[notofication name] isEqualToString:@"DownloadImgBinary"]) {
[activityview stopAnimating];
[activityview removeFromSuperview];
[self.view bringSubviewToFront:scrollView];
[self.scrollView bringSubviewToFront:imgCamera];
self.imgCamera.image = td.imgPhoto;
}
}