vote up 0 vote down star
1

OK i am really struggling with this!

I know had to add an image to the view, i know how to record a touch event. But combining the two is proving to be an issue.

There are lots of tutorials out there on how to move an image with touch events.

But Could anyone suggest how i might complete the following:

  • Add an image to the view on touch
  • Add the same image on another touch received by the user.
  • Manipulate the location of the added images when the user touches a previously added image

Any advice would be highly appreciated

flag

Manipulate how? Like, let users drag the images around once they're placed? Toggle them back off? – Sixten Otto Oct 16 at 14:42
Yes move the image around. So if a user touches a blank part of the screen i would like a square to appear.If the user touches one of the squares that has appeared i would like them to be able to move that square around. So in effect the user has the option to add more squares or just move the squares that are already on the screen. Is it then possible to track the co-ordinates of all the squares on the screen...so you could call a method to draw lines between these co-ordinates or something similar?This all seems like mind blowing stuff to me.so apologies if it seems like a basic question! – Tom G Oct 17 at 11:47

1 Answer

vote up 1 vote down check

Supposing that you want to simply let the image appear and disappear, you could just implement the UITouch event handling methods in the UIViewController for the view that you want to intercept the touch events in. An example on how to do this can be found in the "iPhone Programming Guide: Event Handling" at:

http://developer.apple.com/IPhone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/EventHandling/EventHandling.html#//apple%5Fref/doc/uid/TP40007072-CH9

Once you have managed to intercept the touch events, you can simply add the UIImageView as a subview of the view you want it to appear in.

I hope that helped a bit.

link|flag
Thank you very helpful... i can successfully add an image on touch now. I just need to figure out how to include the extra implementation as explained in my comment above :) – Tom G Oct 19 at 11:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.