Tagged Questions
0
votes
0answers
28 views
Iphone ordered drag and drop in uiscrollview
I need to implement drag n drop ordering (like an icons on ios desktop) in UIScrollView. Btw my scrollview has only one row and i just need to implement reordering in one dimension. Is there any ...
0
votes
1answer
37 views
Trigger an event when a UIButton is dragged to a certain point of the screen? Objective C
How would I trigger an event when a draggable button is dragged to a certain point on the screen?
UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[btn1 setFrame:CGRectMake(10.0f, ...
4
votes
1answer
169 views
Drag UIButton from one view to another by using touch method
Hello all,
I am using "Touch methods" first time so facing certain issue.
In my app, there are 2 subviews in mainview.I am trying to implement drag and drop of uibutton from one view to another view. ...
1
vote
0answers
61 views
Enabling dragging functionality for images within a scrollable div for Web Apps
There are images with some text in a div that contains native scroll bar. I want to make those images dragable keep allowing native scrolling to be functional on that div. Sliding fast on images ...
2
votes
4answers
102 views
How to make UIButton Draggeable?
I need to drag and drop the uibutton in subview only.
Actually i am taking subview in main view. UIbutton is add in subview. When i drag the button it moves on both view but i need to drag button only ...
0
votes
1answer
374 views
UIScrollView Drag and Drop Images [duplicate]
Possible Duplicate:
iPhone/iOS: How to implement Drag and Drop for subviews of a Scrollview?
I have a UIScrollView in which I have added a UIImageView in which thumbnailImages are ...
0
votes
1answer
103 views
Dragging an view in limited boundaries not beyond that
After googling a lot and still not finding any solution, I am asking a question.
My question is:- I want to drag my view in a particular area, beyond that, I do not want my view to drag but it should ...
1
vote
2answers
130 views
Touches Ended for Multiple Images
I have a application in which I drag and drop images from a scrollview to an area to change the image of that area when an image from the scrollview is dropped onto the area the image changes.
My ...
0
votes
2answers
220 views
Add Array of Images to a UIScrollView ObjectiveC
I did weeks of searching and finally found an example on Github that suited my needs. It was a trash drag example. I have now edited the example to my needs.
I now have only one problem. in my ...
0
votes
2answers
452 views
How to Drag an Image with Gesture Recognition Xcode
I have made a little test to drag views in a UIScrollView to UIView where I can call any action.
I'm trying to be able to make the image I made in the UIScrollView Draggable. I have not been able to ...
0
votes
1answer
404 views
Getting 2 Images to Drag in View Xcode
I have 2 images in a view and I applied a drag touch function to the images, and when the image collides with the image at the top of the view it gives you an alert and changes the image at the top of ...
0
votes
3answers
602 views
Drag & Drop UIButton from UIScrollView to UIView in Objective C
I Want to add drag & drop fuctionality on UIButton. Actually I have created numbers of buttons programmatically under UIScrollView. I add following target on UIButton
[mybutton addTarget:self ...
0
votes
2answers
122 views
iOS - How to drag element during animation
i need to drag an element during an animation. The element fall from the top of the screen and i need the user can drag it wherever he want, even during animation
Thanks
0
votes
0answers
127 views
Drag break while dragging UIButton from UIScrollView, DragExit called - iOS
I have added Custom Button in UIScrollView at the end of ScrollView.
ScrollView frame : (0 , 0, 320 , 480).
Button frame in ScrollView : (100, 400, 35, 35).
Now when i drag button from ...
0
votes
2answers
175 views
How to change title of a dragged mkannotationview
I want to change the title of a mkannotationview when I drag it. MKannotationview doesn't have title property - i have a custom view for it. So how do I access it in the dragstate delegate method?
...
0
votes
1answer
99 views
iOS drag & drop for UIPageControl
Is there a way to implement for iOS a drag and drop behavior for a custom icon located in the first page of a UIPageControl to the second page (like moving icons from iPhone's home screen to a ...
0
votes
1answer
86 views
How to Compare the button frame in iPhone?
I am developing an application where I am creating multiple buttons in UIView. Here, user is able to move the button location anywhere in the view, and whenever the button position is changed, I want ...
0
votes
1answer
229 views
How to change the positions of UIButton on iOS/iPhone
In my application, I am creating three UIButton inside, and I want these button should be swapped among it. (i.e) If I drag and drop the (button 1) and place it on (button 2), then
(button 2) should ...
1
vote
0answers
702 views
drag and drop subviews in scroll views like icons in ios home screen
I am creating an application in which the number of albums comes in a grid like apps come in home screen.I have implemented this functionality.
My problem is I want to rearrange or drag and drop my ...
3
votes
1answer
244 views
Drag & Drop TableView Cell to Tapkus Calendar
I have added the calendars in scrollview using tapkus library on the left. I want to drag the cell from right and if i put it on a date then it should be added in that date. The problem is i m able to ...
5
votes
1answer
265 views
iPhone: Drop required thumbnail images to customize a full fledged image
I am developing an iPhone application, where it should allow user to choose/drag and drop some thumbnail kind of images to customize a bigger image(Isometric image rendering) in one module. For ex: ...
1
vote
1answer
62 views
Drag and match objects
I want to make a game which needs to drag an object (UIView class object) and intersect with an another object (UIButton) and the same time an event generates , and checks the matching of object is ...
0
votes
1answer
565 views
iOS drag and drop from table view cell to image view [closed]
I need help implementing a drag and drop gesture, I would like to know Your opinion to find the best approach.
I have a view controller with a uitableview on the right and some image views on the ...
0
votes
0answers
92 views
How can sorting the buttons by using the drag and drop concept using iphone
I have been working on a iPhone app,
I have 4 buttons so how can change/replace the x-postions that means button1 replaced with buttons2 or buttons3 or button4 using the drag and drop concept(now i ...
2
votes
1answer
277 views
Drag & Resize images in UIImageView
Hello I want to drag image from another view and add that in another View and I am using SPUserRezisableView for resizing the view but it works only for UIView, how can I implement it for UIImageView. ...
0
votes
1answer
255 views
how to drag and drop UIButton
I want to drag and drop UIbutton in my app like iPhone main screen icons.
I can do this but while clicking the button it should perform an action. But this action is also called while dragging the ...
0
votes
1answer
535 views
Drag images and resize them on touch(iPhone)
I am creating an app in which when user click on any object and when user tap on UIView, then that images should drop on the view, and on dragging that image in any direction it should be re-sized.
...
3
votes
1answer
876 views
Detect drag event of UITableViewCell [duplicate]
Possible Duplicate:
How to get notified of UITableViewCell move start and end
I have implemented a UITableView with a custom design. This UITableView has to support edit mode. When entering ...
5
votes
5answers
5k views
iPhone/iOS: How to implement Drag and Drop for subviews of a Scrollview?
I am having an horizontal scrollview in an UIViewController, where i have many images in small sizes. I am keeping the images in scrollview because the images are more, so user can scroll horizontally ...
0
votes
2answers
72 views
iPhone: Drag&Drop UIViews
That is what I suppose to have. UIViewController with a dynamic number of draggable UIViews.
The cases that should be covered is:
When user start to drag and than in some moment take his finger ...
0
votes
2answers
116 views
iPhone: Drag&Drop UIViews
I have UIViewController. Inside my main controller I have a lot of small UIViews with label on the left and button on the right. So how can I drag a view when user press the button and drag finger ?
0
votes
2answers
215 views
Dragging an Image View
I am trying to drag an image view. I have got little bit of success in doing so, but it is not behaving as i want. I wish that it should move only if touch inside the image and drag it.
But it is ...
1
vote
2answers
382 views
Drag and drop UIButton and connect them with a line iphone
i want to drag and drop my UIButton from one place to another, and from certain point i want to connect them with another button by line. like when we connect our button action with interface builder.
...
0
votes
1answer
338 views
Drag a button in a ViewController - iOS
What I'm trying to do is to drag a button and drop it into a "folder".
But this "folder" is a day of a calendar, which is in a ViewController (I'm using Kal Calendar).
So I dont know in which day is ...
4
votes
4answers
4k views
iPhone App: implementation of Drag and drop images in UIView
In my iPhone App I want to implemented functionality as shown below
user can pick a shape(an image) from one view and put in other view
How can I achieve this?
Please help and suggest.
...
0
votes
2answers
658 views
Drag and drop images from toolbar to view canvas
I want to make a app where I need to have a toolbar. The toolbar will have various number of objects (images). These objects should be draggable and placed on view right above it.
This is a kind of ...
2
votes
2answers
293 views
Iphone desktop effects
How can I make a effect just like iphone desktop?
I want it can show nine icons,when I long press on the icon,it can shake and I can drop and drag the icon...
Does anyone has a demo? Thanks in ...
3
votes
1answer
547 views
iPhone: How to combine Long Press gesture and drag operation together on map?
I've tried a number of things and to post code at this point would likely be confusing, so let me start with the concept.
I need to somehow combine the operations of long press and touch drag into a ...
2
votes
3answers
2k views
how to drag an uiimage from scrollview to another uiimageview in iphone sdk
In My Application,i am having one scrollVIew containing multiple images.
and out of the scrollview i have one uiimageview.
i want to Drag any image from ScrollView and drop it on uiimageview which ...
3
votes
1answer
4k views
touchesbegan, touchesmoved, touchesended issue
For various reasons, I've moved these methods from a UIView subclass to my viewcontroller. And I finally got it working, except for one thing. Not only am I able to drag the UIImageviews I've ...
1
vote
1answer
120 views
Moving the MPMoviePlayer across the screen using drag and drop
I need to pinch size the MPMoviePlayer and move it across the screen. I have been able to achieve the first task by putting the player to an UIView and applying pinch gesture to the UIView. Now I need ...
10
votes
4answers
17k views
Native HTML5 Drag and Drop in Mobile Safari (iPad, iPod, iPhone)?
I've successfully implemented native HTML5 Drag and Drop for moving HTML elements inside a page (just, say, a div from one place to another, nothing related to interacting with the host OS' files ...
0
votes
1answer
959 views
touchEnd and onMouseUp BOTH firing from iPad
I'm building a page that will be used on laptops and iPads. So, the majority of the code (it's drag/drop heavy) is duplicated across mouse events and touch events. But now I'm finding a really strange ...
1
vote
0answers
190 views
How do you drag and drop multiple UIImageViews on a UISlider how like trollbeads app does?
I am able to drag UIImageViews however, I am not sure how to go about dropping them onto a x coordinate UISlider. As well as allowing them to do collision detecting, like how that app does. Does ...
1
vote
1answer
798 views
Drag and drop for web application on iPhone/android device
I am working on a web application which has to work on iPhone,android as well as desktop browser.I should integrate drag and drop functionality for several images on the webpage.There should also be ...
0
votes
1answer
618 views
How to drag and drop a UIButton
I have four UIButtons in my interface file. I have outlets attached to each button. I want to be able to drag and drop them across the screen. What is the best way to do this? How can I do this? ...
0
votes
1answer
379 views
Change touch responder to other view in iPhone?
I want to make a drag and drop action in iPhone: when I touch down to a button A, a new view B appears at that location, and if I keep dragging my finger without lifting it, the new view B will be ...
1
vote
2answers
260 views
Can I drag sections in tableview as I can do it with rows?
I use
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath
toIndexPath:(NSIndexPath *)destinationIndexPath{
}
method for dragging and dropping rows ...
4
votes
4answers
4k views
Drag and drop objects and return them to their original position
I'm trying to drag an image and let it return to it's original position after releasing it. So far, I can drag an image by creating it as a button using the following code: (as seen in the answer to ...
1
vote
2answers
1k views
Bounds checking for the center of a UIView while dragging it around
I have UIView elements that i want to drag around the screen. But i want that no-matter what, their center should be always inside the bounds of their superview.
I added to them an ...



