Tagged Questions
0
votes
1answer
26 views
Drag & Drop items between tableViews in same viewController and different viewControllers
I need to Drag and Drop items between tableViews inside the same viewController and between tableviews in different viewControllers. I researched for ways to do this and if there's already any good ...
0
votes
2answers
29 views
drag and drop uiimage into another uiimageview
I am using following code snippt to drag and drop uiimageview
UIPanGestureRecognizer *panRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(move:)];
[panRecognizer ...
1
vote
1answer
27 views
How can I detect a dragged window from another?
In my application I want to dynamically create windows (NSWindows) and have a special window (which is a NSWindow too and I call dump space) where I can drag the other windows for closing them.
...
0
votes
3answers
56 views
Storyboard won't make button action
For some reason I can't drag and drop from my storyboard button into my View Controller class.
All of the classes are named correctly, and I've tried logging out of my computer, shutting it down, and ...
0
votes
0answers
31 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
0answers
19 views
UIScrollView Scroll when touches border
I have a scrollview with several controls on it. I want to make sure that when you drag one of the views to the border of the scrollview, the contentsize needs to be resized by example 50, and the ...
0
votes
0answers
37 views
Drag'n drop automatic on an Image after creating it dynamically
I'm trying to add a drag'n drop feature in my iOS application.
First, I create the button that will create my element to drag'n drop :
ButtonMenu *btn = [ButtonMenu ...
1
vote
0answers
49 views
How to drag and drop mp3 songs in the playlist
I am developing a mac desktop based application, Created some playlists using NSOutlineView. I know how to drag and drop in NSTableView, But i don't know how to drag and drop in the playlists ...
0
votes
1answer
39 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, ...
0
votes
2answers
243 views
how to drag dynamically created UIImageview in obj c (xcode)
i have gone through the many tutorials to drag an image on screen using touchesmoved method
but most of them are not for dynamically created imageviews
in my project i created 5 UIImageview ...
1
vote
1answer
88 views
Get dropped mail message from Apple Mail in Cocoa
I googled and read docs. Searched on SO, found answers that propose usage of Applescript, but I can't use Applescript because of sandbox.
I am working on Cocoa application (written in Objective-C and ...
0
votes
1answer
40 views
PXListView drag and drop is not doing working
i have created the NSViewController for managing the PXListView....delegate is connect with File owner...
here everything is working as per the expectation..except drag and drop...
while dragging it ...
3
votes
1answer
111 views
Drag and drop over 2 different views
I have this following problem which I can't seem solve:
In my top view (a menu bar), I have a UIButton on which I want the user to press and then drag and drop an object (OpenGL object that spawns ...
0
votes
1answer
74 views
How to enable drop something on the Trash.app in objective-c
I've got implemented Drag and Drop from Finder to my app to NSTableView, and I created link to document, etc. But I want to make delete operation by drag item from NSTableView and drop this row onto ...
1
vote
1answer
134 views
Drag and drop mail into OS X app
I would like to be able to drag and drop and email from Outlook for Mac and from Mail.app into an OS X app. If I drag and drop and email from my finder (drag a file), then the following is called:
- ...
0
votes
2answers
139 views
UIControlEventTouchDragExit triggers when 100 pixels away from UIButton
At present, the UIControlEventTouchDragExit only triggers when I drag 100 pixels away from the button. I'd like to customize this behavior and bring that range in to around 25 pixels, but I'm ...
0
votes
0answers
64 views
Why can I implement NSDraggingDestination methods in a NSWindowController?
I am working on using Cocoa's Drag & Drop API in a non-C environment. I'll have to use the objc/runtime.h functions and so I need to understand where exactly I have to inject the necessary ...
1
vote
1answer
602 views
Drag and Drop Image from UITableviewCell to other View
I am working on a iPhone app, where I need to drag an image from UITableViewCell
and drop it in some other UIView outside the tableview.
(imageview added as :[cell.contentView ...
0
votes
1answer
118 views
Touch Event Detection in UIImageView inside UITableViewCell
I am trying to detect a touch event in UIImageView which is added in UITableViewCell's contentView. But, Imageview is not triggering the touch event, i have enabled the imageview userinteraction too. ...
0
votes
4answers
282 views
Rotate around circle
I need to implement the following application in objective c >>
http://bit.ly/rHzVkF
How can I rotate a circle by draging like in the app ? Do you know some similar examples ?
-1
votes
1answer
107 views
Adding Subview From scrollview to normal view not working?
I am trying to drag C view from A view to B view in a scroll view. For this purpose, I am trying the following way:
The C view is removed from A view and added in scroll view as subview.
After ...
1
vote
1answer
157 views
Drag a button in OSX 10.8 SDK/objective-c
I started using objective-c today in order to develop an app for OSX (mountain lion).
I have a bunch of buttons that I would like to drag them into some other object, for instance a text field. I ...
0
votes
0answers
71 views
Drag and drop effect for UIButton as in chess game of Mac
I am making a chess game in objective-c for iOS platform. I want move my pawn with rubber effect(i.e move a pawn like Apple's default "Chess" game in Mac). Can anyone give me suggestion?
Also one ...
0
votes
2answers
127 views
Drag multiple UIImageViews in an Array
This is what I have so far
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [[event allTouches] anyObject];
for (UIImageView *imageView in _imageViewArray) ...
0
votes
1answer
107 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
131 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
222 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
1answer
69 views
NSWindow doesn't respond until click
I've got an image editor window. After drag event I minimize my window to miniature in the bottom left corner, after drop on the miniature I return window back. Above the miniature I change cursor to ...
0
votes
2answers
470 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
422 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
622 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
0answers
128 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
0answers
129 views
Drag an item from NSTableView to a NSView
I have an NSTableView containing some custom NSTableCellView , which contains an image and two textfields
Now, I want to drag an item from NSTableCellView (that corresponds to one object in my array ...
0
votes
0answers
61 views
CoreDragMessageHandler : Cannot track drag receiver. No pasteboard name.
I'm working on an NSBundle that is integrated into a larger application as a plugin. I have subclassed NSImageView to create a view intended to display a directory selection. I want to allow users to ...
0
votes
0answers
61 views
Drag from Mail.app to application running in menu bar
I understand it is possible to write a Mac application that allows the user to drag and drop files onto an icon in the menu bar (e.g. Cloud App).
Also, when dragging an email from Mail.app into a ...
1
vote
0answers
714 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
228 views
Show indicators while programmatically scrolling UIScrollView
I am writing a framework which simplifies common (but sometimes tricky) drag and drop tasks in iOS. As part of this framework, when the user drags (and briefly holds) an object near the edge of a ...
1
vote
1answer
91 views
Stop touch moves if counter reaches 3
I have an application with drag and drop a UIView feature. I should only let 3 drags and not more than that. How do I keep track of the number of drags? I tried incrementing a counter in ...
1
vote
1answer
75 views
NSURL without %
I'm implementing my drag&drop method. How can I get NSUrl without % where spaces should be? I convert NSUrl to NSString later, but I can't tell NSString to replace % with space, because there is ...
0
votes
2answers
128 views
Drag&Drop NSURL without “file://”
I'm implementing my drag&drop method. I need that when user drags something on my app window I can get that file URL. NSURL needs to be converted to char. Thats OK. But how to remove file:// from ...
1
vote
1answer
183 views
ios drag and drop subview only working once
I have UIView in which I want to be able to drag and drop subviews, and this is working fine once.
- (void)pan: (UIPanGestureRecognizer *)recognizer
{
if (recognizer.state == ...
1
vote
0answers
254 views
Mac app - drag and drop files into a menubar application
My inspiration for this project is the Droplr and CloudApp mac menubar applications. I have been attempting to implement the code explained here.
However, when I implement the code, the menubar ...
1
vote
0answers
184 views
How to drag and drop an item on top another
I am trying to create a little game, and have a problem with the dragging and dropping of objects : I am using UIPanGestureRecognizer on two buttons. What I want is for button 2 to be highlighted when ...
0
votes
1answer
103 views
Drag-n-Drop NSTabViewItem
In my application, we have NSTabViewItem inside NSTab , and there could be More then one NSTabViewItem are possible,
To Support one of the feature, we need to support Drag-n-Drop in NSTabViewItem, ...
5
votes
3answers
208 views
Superview as drag destination if subview rejects it
Consider a view (parent) with a subview (child). Both have registered for the dragged type NSFilenamesPboardType.
parent is only interested in image files and child in audio files. If they detect a ...
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 ...
1
vote
2answers
334 views
How to move different UIImages between different UIViews by doing clicks, not drag and drop
I am working on a project using Xcode, I've set up a checker board using a bunch of little UIImageViews containing UIImages of the pieces and laid them out inside a larger UIImageView, representing ...
2
votes
1answer
278 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. ...
1
vote
1answer
89 views
When using drag and drop tracking areas not detected/defined
My problem is that when I'm dragging something in my view, my tracking areas are not detected.
I have a text and I've defined some tracking areas so that if I go over a specific part of the text I ...
0
votes
1answer
170 views
How to make drag from NSButton in MacOS Lion
I have NSButton what accepts drop on to add dragged items to NSMutableArray. How can I make drag from NSButton to drag all items in NSMutableArray?


