我需要使用一個線程才能從Web中檢索圖像並將其分配到圖像視圖中。NSOperation和SetImage
我有子類的NSOperation,並從我的視圖控制器喜歡把它稱爲:
NSOperation *operation = [[[GetImage alloc] init] autorelease];
[queue addOperation:operation];
我得到圖像細膩,但我怎麼去分配是形象,是在我的NSOperation類?我有存儲在一個UIImage稱爲RetrievedImage圖像:
NSData *imageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:url]];
retrievedImage = [[UIImage alloc] initWithData:imageData];
[imageData release];
我現在該如何獲取到我的ViewController的ImageView的?
謝謝
我試圖設置的ImageView setImage兩個NSOperation類和ViewController類中,都沒有工作。他們不會崩潰,只是沒有任何反應。 – omniscian 2011-01-30 20:12:15
在將imageview添加到視圖之前,您是否設置了此項?這應該是工作.... – Icky 2011-01-30 20:16:52