Hello!
I want to change an uiimage.image by calling a method in my viewcontroller:
-(void) aendereBild: (NSData*)bildngage {
UIImage *uiimageAusData = [UIImage imageWithData: bildngage];
drawImage.image = uiimageAusData;
}
To make it short: The image is not changing. This is not due to the NSData I pass (which i first thought was the problem). This method is called from the appdelegate.
In another void in this viewcontroller I can change the image with drawimage.image = otherimage without any problems, so I think the call from the AppDelegate is causing the problem. Anyone an idea what I did wrong? Thankie!