In the ViewController I would like to:
1) Detect if the UIView has been selected
2) Insert an image at the coordinates.
How do I do this? I'm currently using:
CGPoint touchPoint = [touch locationInView:theViewIWant];
UIImage *myImage = [UIImage imageNamed:@"myimage.jpg"];
[myImage drawAtPoint:touchPoint];
But this isn't working.