I'm trying to pass an image between 2 different views that are added as subclasses to the MainCanvasController. the image seems to get passed (it is shown, when printed to the Console) but it doesn't display anything... this is how I try to receive and display the image
-(void)receiveNumber:(C4Image*)number{
C4Log(@"number:%@", number);
number.center=self.canvas.center;
[self.canvas addImage:number];
receivedImage=number;
C4Log(@"received number: %@", receivedImage);
}
and here is how I post the image
[secondView receiveNumber:originalImage];
I don't really know what's going wrong. (well, honestly, I don't know at all...) So any hints are very much appreciated!