I've got a ControllerView which will initialize a set of Images-Classes. Here the basic-initialization in the Image-Class:
- (id)initWithImage: (UIImage *) anImage {
if ((self = [super initWithImage:anImage]))
{
}
return self;
}
How can I inform the ControllerView, when an image has been loaded ?
How could the ControllerView listen to the ImageClass, when the image has been loaded?