Tagged Questions
0
votes
0answers
13 views
handling paper.js drag events on iPhone
I made a paper.js paperscript that handles onMouseDrag() event.
When I use it with Safari on iPhone, there is a problem:
Safari's pinch/scroll gestures doesn't work inside the script
if it implements ...
0
votes
3answers
62 views
Not let UIButton drag outside Circle
I am new to ios.
I have a view in which i had drawn a circle using Quarts core.
I had put one UIButton in that circle and given the Funcnality to DRag and drop that button.
Now i want constraint ...
0
votes
1answer
95 views
View dragging segue
I want to create an application, which displays a draggable window (cart). The cart has to be dragged from the bottom of the screen and must cover all opened views. The dragging must follow your ...
2
votes
2answers
233 views
How to drag a image from one button to another button in iPhone?
Currently i am working in iPhone application, Using two buttons, then i set the image both button1 and button2, then i tried to drag a image from button1 to button2, Is it possible to do this? please ...
0
votes
3answers
325 views
Drag-able button in iOS iPhone such that it repositions itself in its orignal position after touch ended.
I am making an app where there are different buttons for different colors, if i drag this color button on a specific view its color must change to this button's color and the color button should ...
1
vote
1answer
219 views
Looking to mimic the iPhone lock screen camera drag
I've been searching and searching on how apple makes the dragging motion on the lock screen to open the camera so clean. I'm trying to do a similar thing with an app where you drag from the bottom up ...
1
vote
1answer
118 views
How to apply scale animation when uibutton is dragged?
I want to apply scaling animation to UIButton.When user drag button upside of the screen the scaling is decreased and when drag down to the screen scaling is increase of UIButton.
Thanks in ...
2
votes
0answers
146 views
Is there any method forwarding event from UIButton to UIScrollView?
I want to forward event from button which in the scrollview to scrollview when the button touched down and dragged inside.
by Using button's "addTarget: action: forControlEvent" function, I can ...
2
votes
2answers
83 views
Need pointers for iphone app where a graphical object follows your finger
I'm looking to do an iphone/ipad app which isn't a game but requires a graphical object on the screen to follow your finger so it can be placed where 'dropped'. Effectively this is drag and drop. I'm ...
2
votes
1answer
362 views
How to Drag/Drop a UIView (e.g. UIImageView) to a cell in a Table in iPhone/iPad
I already have the dragging and dropping of a UIImageView to another UIImageView but now I need to be able to drag/drop a UIImageView (that is situated beside a Table View) inside the Table View. So ...
5
votes
3answers
1k views
How to get notified of UITableViewCell move start and end
I have a UITableView in my iOS app that gets refreshed periodically. The user is also able to move the tableview rows at all times (the tableview is always in editing mode).
I want to stop the ...
0
votes
0answers
220 views
Drag UIButton inside limits
I have searched around the web but haven't found a clear answer. I use a panGestureRecognizer to drag a slider button on the x axis, but I don't want to be able to drag if outside my slider track. I ...
1
vote
2answers
232 views
Drag a UIButton or a UIImage without subclassing
I have a custom controller and inside I have a UIImageView ( or a UIButton ). My custom controller is a slider, so basically when touchesEnded is called I want to check the intersection with other ...
0
votes
3answers
602 views
Drag button with touch move
I am working on a custom controller. I want to create a slider, to choose between more options. The problem is that when I touch the button I want to it doesn't call my touchesBegan method. But if I ...
0
votes
1answer
217 views
iphone drag and drop weird jumpy movement
I'm building an interactive anagram feature at the moment for my iPad app and am trying to use touchmove events to get the selected item to follow the movement smoothly, but it is jumping for some ...
3
votes
2answers
326 views
Custom UITableViewCell broken when being dragged to reorder
I have a custom UITableView subclass that inserts a separator line as a subview, like this:
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = ...
1
vote
1answer
694 views
Dragging a UIImageview out of UIScrollview
I have many uiimageviews in a uiscrollview. I am trying to drag an uiimageview out of the uiscrollview. I have subclasssed uiscollview and have written custon touchbegan,toucmoved and touchended ...
0
votes
1answer
458 views
Touch Drag Inside triggers sound repeatedly & Touch Up Inside doesn't work
I'm trying to do an app where a short sound sample is supposed to be played while the person using the app is dragging his/her finger(s) across the screen. When the finger(s) are lifted away from the ...
2
votes
1answer
494 views
Three20 “pull down to update”: How to change the text and datetime format?
I'm using a TTTableViewController with a TTURLRequestModel and implemented the "Drag to refresh" feature with these lines in my ViewController:
- (id<UITableViewDelegate>)createDelegate {
...
1
vote
1answer
1k views
Xcode: How to drag and drop any object with same code?
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 ...
0
votes
2answers
190 views
UIImageViews to make copies of themselves after being dragged and dropped
I'm trying to get the UIImageViews to make copies of themselves after being dragged and dropped. For example: I have UIImageViews for all the letters of the alphabet.
I hooked them all up using ...
0
votes
1answer
411 views
Controlling drag move with tap count in iPhone
I have a custom button class..
I want to be able to control this button through tap counts..
When the user taps only once, the button will popup a comment box..
When the user taps twice or tap once ...
17
votes
1answer
23k views
How to use UIPanGestureRecognizer to move object? iPhone/iPad
There are several examples of the UIPanGestureRecognizer class. For example I have read this and I am still not able to use it...
On the nib file that I am working on I have a UIView (white rectangle ...
4
votes
1answer
269 views
Drag UIView without disabling its child controls iPhone/iPad
I have a UIView control (white rectangle in image)
Moreover I am able to drag that control...
And when I press the button I load a subview which is another nib that I created and I placed random ...
1
vote
2answers
608 views
Cocos2d-iPhone Drag anywhere to move sprite
Ok what I would like to do is duplicate the controls of Space Invaders Evolution.
Begin a touch anywhere then drag around and the sprite moves 1:1 with your finger.
Sprite can not be moved of ...
0
votes
2answers
540 views
drag UIView like apps in the home screen iPhone
I have a view control and inside I plan to place some controls like buttons textbox etc... I can drag my view along the x axis like:
1)
2)
with the following code:
-(void) touchesBegan:(NSSet ...
0
votes
1answer
1k views
Drag View from the point you touch it iPhone
I know how to drag a view or object:
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *touch = [[event allTouches] anyObject];
if( [touch view] == ViewMain)
{
...
0
votes
1answer
318 views
Dragging a subview of a view to its parent view
I've been searching for the solution for hours. While I can find similar questions, I didn't get the answer. Please help me with this. Here is the situation.
I'm developing an iPad application. I ...
1
vote
1answer
803 views
iOS dragging UIImageView
Ok, so I have always wondered how do I actually pick up an image view and drag it. I was planning when I drag an image view and when user places it to correct location it locks there. I really don't ...
3
votes
1answer
209 views
moving a map overlay
I am trying to create an app where the user can mark an area on a map. I want him to be able to move the area he marked.
I found that there is an api for adding overlays on a map, but I cannot get to ...
0
votes
2answers
305 views
How to drag view with two finger
Hi all:
I want to write a gesture recognizer on the iphone, that I cold use two finger to drag the view. Just like we use two finger on the MacBook Pro's touch pad.
If the view's size ...
0
votes
2answers
277 views
How to use two gestureRecognizers simultaniously
Within my view I've got several images. All of those images are linked to a LongPressGestureRecognizer and a PanGestureRecognizer.
When a user Press and holds (LongPressGesture) the image animates ...
1
vote
5answers
4k views
Dragging UIView under finger [duplicate]
I want to tap on a UIView and drag and have that view follow my finger, simple enough. But the easiest way of doing this is by setting the objects center to where the tap happened (Which is not what I ...
0
votes
1answer
812 views
drag and drop programmatically generated UIButtons
I created many uibuttons dynamically via a for loop and added them to the scene. Now I want to add drag and drop capability to each uibutton. How can I accomplish this?
Say a game like breaker, you ...
2
votes
3answers
3k views
detecting the [UITouch view] in touchesMoved method
I wish to drag from one subview to another within my application (and connect them with a line), and so I need to keep track of the current view being touched by the user.
I thought that I could ...
1
vote
1answer
1k views
'drag' move a uibutton so it acts like uiScrollView
I need to slide a uibutton up and down the screen (Y only). It needs to be confined to an area. I want to be able to click on it and drag or flick it, just like a uiScrollView. The reason it is ...
1
vote
0answers
48 views
(iphone) restrict draggable object's movement in a view?
I'm dragging a view object in it's superview.
I'd like to confine it's movement within the superview.
How can I achieve this? Thanks.
0
votes
1answer
764 views
Is it possible to move a subview of one view to another view by dragging?
I have a view which I want to move by dragging.
This view is in a view 1.
I'd like to move the view to view 2.
Where view 3 has view1 and view2 as subviews.
Is this possible or should I merge ...
0
votes
1answer
786 views
Drag/Slide div inside overflow:hidden container on iPhone
I am creating a wepapp, that has a horizontal menu. The menu is limited to 320px and has overflow set to hidden. Inside the links are wrapped in a div which has a width set to it. The list overflows ...
0
votes
1answer
2k views
Help me understand iPhone touchesBegan implementation and dragging a UIView
I know this has been sort of answered before ( iPhone "touchesBegan" and "touchesMoved" message ... do not move to centre of touch ), but I'm very new to iPhone development so don't understand the ...
0
votes
1answer
533 views
Cocoa Touch - Drag onto button to trigger event
Hey all, just wondering what the best way to add this capability was.
I want to be able to press the button normally by doing touchDownInside, but I also want to be able to slide my finger from one ...
1
vote
2answers
841 views
Iphone : detecting drag / swipe direction starting from a button
I trying to make a swipe mechanism for a view that might have buttons on it. Without a button its a piece of cake.
However if your finger starts on the button, you can trigger an event (drag ...
0
votes
1answer
641 views
Dragging an image from a scrollview
This is driving me bonkers, have been on it ages and still can get the thing to do what I want!
My view is set out like this:
RootViewController contains (UIView)flipView
FlipView contains ...
1
vote
1answer
286 views
Need help in animating a Wheel on iphone
I am doing an application in iphone that need to spin the Dart Wheel when I drag on it. The view will have a dart wheel image and when we drag the wheel it spins and slowly it stops.
Can any one help ...
0
votes
1answer
187 views
Draggable UIImgeView Rotation
I have a UIImageView object that I rotate with frame property and CFAffineTransformMakeRotate and then I want ot move it with moving origin of its frame, but my image moves and reshape strangly.
...
0
votes
1answer
191 views
Duplicating finger movements Objective C
I was wondering how I would go about duplicating finger movements with a moving image view object. - ie. you move your finger and a few centimetres away from it, an image moves around the screen, ...
1
vote
2answers
1k views
how to make a 'div' element drag on iphone
this is my code,for some reason , i can't use any javascript lib ,like ;jquery:
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
...
10
votes
2answers
4k views
(iPhone) how to implement draggable pins using OS 4.0 MapKit?
Can anyone provide any sample code/instructions for implementing draggable pins in OS 4.0 using the MapKit framework?
0
votes
1answer
237 views
drag object vertically
i like to drag this object vertically instead of horizontally, which is doin it now:
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [[event allTouches] ...
0
votes
1answer
903 views
iPhone UITableView row drag-move
How would you know if a row from UITableView has been move via drag? Is there an event to catch?

