当有人单击按钮时,我有一个 UIImageView 插座,具体取决于他们单击的按钮。这是我的代码:
UIImage *img = [[UIImage alloc] initWithData:image];
self.imgToDisplay = [[UIImageView alloc]initWithImage:img];
// I try to use this to see the image:
[self.imgToDisplay setNeedsDisplay];
但没有用。有谁知道如何在我的 UIImageView 上显示图像?
我会非常感谢你的帮助。