I'm building an app for the iPhone and I need to drag and drop allot of different objects.

I have found allot of separate ways to drag and drop UIImageViews, UIButtons etc. But I was wondering if there is a universal way to program any object to able to drag and drop?

Thanks in advance :)

link|improve this question

60% accept rate
Drag and drop where? In Xcode? In iOS? (is that even possible?) – Flyingdiver Sep 11 '11 at 16:21
I want to drag and drop any object on the iPhone screen in iOS. – Niklas Jensen Sep 11 '11 at 16:22
Drag it where? The only application that gets drag events on the iOS screen is the Springboard. I don't think there's any such thing as drag and drop to any other application. – Flyingdiver Sep 11 '11 at 16:23
I only want to move it around on the screen in the same view. – Niklas Jensen Sep 11 '11 at 16:27
OK, sorry, thought you were trying to drag things around between views, which would be really hard to do in iOS. :) – Flyingdiver Sep 11 '11 at 17:44
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

You may want to consider using one or more UIGestureRecognizers for each view. Here's a reference to the docs.

http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIGestureRecognizer_Class/Reference/Reference.html

link|improve this answer
Thank you very much :) – Niklas Jensen Sep 11 '11 at 16:57
feedback

Your Answer

 
or
required, but never shown

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