Is it possible to drag UIView around the iOS screen while it has both image and text? e.g. small cards. Could you point me to the similar (solved) topic? I haven't found any.
|
While UIView does not have a built-in support for moving itself along the user dragging, it should be not so difficult to implement it. It is even easier when you are only dealing with dragging on the view, and not other actions such as tapping, double tapping, multi-touches etc. First thing to do is to make a custom view, say
And because all subviews of the DraggableView object will be moved, too. So put all your images and texts as subviews of the DraggableView object. What I implemented here is very simple. However, if you want more complex behaviors for the dragging, (for example, the user have to tap on the view for a few seconds to move the view), then you will have to override other event handling methods (touchesBegan:withEvent: and touchesEnd:withEvent) as well. |
||||
|
|
|
An addition to MHC's answer. If you don't want the upper left corner of the view
to jump under your finger, you can also override
and change MHC's touchesMoved to:
you should also define
EDIT: diablosnuevos provides more elegant solution that allows you to ditch the ivar: http://stackoverflow.com/a/10378382/653513 |
||||
|
|
|
This is what a neat solution, using what pepouze wrote above, would look like (tested, it works!)
|
|||
|
|
|
Even though rokjarc solution works, using
avoids the |
|||
|
||||
|
|
