I have a feature in my class IBOutlet UIImageView * imageView;
And if I do this in one of these scenes: imageView.image = [UIImage imageNamed: @ "foo.png"];
But how can I draw some points with coordinate x, y (in pixels) in straight view?
Thank you!
UIImageView is not designed to allow arbitrary drawing code For this purpose, a UIView Use and override the method.
Comments
Post a Comment