I am trying to do a very basic thing but I am new to this. Basically I have a screen with a 3 objects that can move around, I have implemented a method which I call when TouchesMoved happens - if object X moves over main object the object X will be hidden.

What I want to do is when the object Y is released over the main object it will return to the position it was moved from.

  1. should this be implemented in the TouchesEnded?
  2. what would the method look like?

Any help would be very appreciated.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

All you'd have to do here, is remember the object position in touchesBegan: and then restore the object in touchesEnded:

If you're only accepting single touches, then you can use something like this in the touchesBegan / touchesEnded methods to grab the touch...

CGPoint location = [[touches anyObject] locationInView:self];
link|improve this answer
I understand the solution looks right but I was not able to implement in my code. should this be implemented in my costume class or on the view controller itself? – PokiTheKing Oct 5 '11 at 19:33
In the view controller. – Simon Oct 10 '11 at 7:31
Thats what i did worked great :) Thanks. – PokiTheKing Oct 10 '11 at 8:00
feedback

Your Answer

 
or
required, but never shown

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