我所做的是:
我有一个用于UIImageVIew和
的IBOutlet[self.imgPView setImage:[UIImage imageWithContentsOfFile:imagePath]];
在某处, 我已经显示了AlertView
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Warning" message:@"Problem is already submitted, Do you want to submit again?" delegate:self cancelButtonTitle:@"Yes" otherButtonTitles:@"No",nil];
alert.tag = kProblemSubmitAlert;
[alert show];
当UIAlertView显示时,ImageView上的图像消失了, 有什么想法吗?
答案 0 :(得分:0)
如果这是一个缓存问题,您可以通过使用UIImage
而不是+imageNamed:
初始化+imageWithContentsOfFile:
来取得成功。