NSOperation and SetImage
问题 I need to use a thread in order to retrieve an image from the web and assign it into an image view. I have subclassed NSOperation and called it from my view controller like: NSOperation *operation = [[[GetImage alloc] init] autorelease]; [queue addOperation:operation]; I get the image fine but how do I go about assigning that image that is in my NSOperation class? I have the image stored in a UIImage called RetrievedImage: NSData *imageData = [[NSData alloc] initWithContentsOfURL:[NSURL