Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an image that is about 14000px by 14000px. I want to put it in a view and then be able to drag that image around to change what is seen. Is there a native way to do this or a custom class that has already been written or will I have to do it myself?

share|improve this question
2  
NSScrollView? – trojanfoe Jan 22 at 16:07
Does NSScrollView have a setting to do this by default? From what I have seen I don't see that so I would have to override the class myself. – stormbard Jan 22 at 16:20

1 Answer

For iOS

1) drag and drop image around the screen : Using UITouch To Drag An Image Around The Screen

2) Drag And Drop objects : Drag and drop objects contended in a scrollable image gallery

3) Basic drag and drop

For Mac

I don't think there is any ready-made way is available for you with mac os.You need to implement the NSDraggingSource's – draggingSession:endedAtPoint:operation: as required by you. Unfortunately the method "-draggedImage:endedAt:operation:" got deprecated in OS X v10.7 and later. You can refer this for implementing the NSDraggingSource protocol.

draggingSession:movedToPoint: Invoked when the drag moves on the screen.

- (void)draggingSession:(NSDraggingSession *)session movedToPoint:(NSPoint)screenPoint

--session: The dragging session.

--screenPoint: The point where the drag moved to, in screen coordinates.

I hope this will be useful for you...Happy coding :-)

share|improve this answer
I will take a look at these, but I was creating a Mac OSX app not an iOS app. – stormbard Jan 22 at 20:20
1  
@stormbard..have edited the answer..have a look at it :-) – PKCoder Jan 23 at 0:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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