At the moment i have declared my UIImage.
I load in an image into it.
But when I call the draw method I see nothing appear on the screen. Trying to get a little clock image to appear on my View.
clockImage = [ UIImage imageWithContentsOfFile:@"clock.png"];
[clockImage drawAtPoint:(CGPointMake(300.0, 300.0))];
Am i missing some vital steps? Is there more setup required?
Many Thanks, Code