3
當有人點擊一個按鈕取決於他們點擊的按鈕時,我有一個UIImageView插座。這裏是我的代碼:如何在將圖像分配給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上顯示圖像?
我真的很感謝你的幫助。
在你的代碼中,你是不是指'[self.imgToDisplay setNeedsDisplay];'? – 2013-04-09 20:55:50
嘗試添加UIImageView作爲您希望顯示的任何位置的子視圖。 – 2013-04-09 20:56:37
是的,對不起,我修正了 – HelenaM 2013-04-09 20:56:46