The nsresponder tag has no wiki summary.
3
votes
0answers
104 views
Unlocking Focus on wrong view ((null)) under OS X 10.7.2
I have a Cocoa app that has an NSWindowController controlling an NSWindow with an NSComboBox in it. Nothing special, and it worked fine until upgrading to OS X 10.7.2. Now I get the following ...
3
votes
2answers
158 views
mouseDragged events get stolen by another view
I have several views of class MyView (subclass of NSView) inside another NSView. MyView implements -mouseEntered:, -mouseExited:, -mouseDown:, -mouseDragged:, and -mouseUp:.
Almost always, when a ...
3
votes
4answers
612 views
UIScrollView prevents touchesBegan, touchesMoved, touchesEnded on view controller
I am handling touches for a couple of my UI components in my view controller (custom subclass of UIViewController). It has methods touchesBegan:withEvent:, touchesMoved:withEvent:, and ...
3
votes
1answer
439 views
Inertial Scrolling & -ScrollWheel: on OS X
THE PROBLEM:
I have an NSScrollView. I'm using it to implement a custom "Table View" with rows of data that are actually NSViews. (Note: this is not an instance of NSTableView.)
As I scroll ...
3
votes
1answer
728 views
Make NSView in NSPanel first responder without key window status
Is it possible to give an NSView inside an NSPanel first responder status without giving the NSPanel key window status (making the main application window resign key)?
Thanks.
3
votes
1answer
649 views
How to inspect the responder chain?
I'm doing some crazy multiple documents inside a single window stuff with the document-based architecture and I'm 95% done.
I have this two-tier document architecture, where a parent document opens ...
2
votes
1answer
59 views
NSResponder mouseExited when hovering Window title
I have an NSWindow with an NSToolbar and a content view.
I have set the tracking area to be the whole frame of the view.
I wish to have the mouseExited event fired when the cursor leaves the content ...
1
vote
1answer
59 views
Objective-C: Detecting “shift” keypress while another key is pressed
This is to implement a keyboard based game controller.
Left/Right arrows makes the character walk.
shift+left/right makes the character run.
Here's the code I'm using so far:
- ...
1
vote
0answers
88 views
Cocoa NSApplication not active but receiving mouse events
I'm having a weird issue where I click away from my window. It resigns main and key. Then I click back to it and the view that was clicked on does not respond to the mouse click. But the second ...
1
vote
1answer
413 views
How to receive keyboard events for a NSView after exiting fullscreen mode?
I subclass an NSView and start full screen mode when the application finished launching. The view is available as the property fooView in the application delegate.
// AppDelegate.m
- ...
1
vote
1answer
74 views
What is the difference between moveBackward: and moveLeft: when using NSResponder -interpretKeyEvents:?
I'm implementing a custom text box using -interpretKeyEvents: and am trying to figure out what the difference is between moveBackward: vs moveLeft: and moveForward: vs moveRight:. moveLeft: is bound ...
1
vote
1answer
140 views
looking for a better way to activate and deactive background of text fields in my GUI (Cocoa OSX)
I have a small gui app that consists selectable groups, each groups has a disclosure button to display its sub-group, an image and a text field. When you are editting a text field and select another ...
1
vote
1answer
1k views
Catching double click in Cocoa OSX
NSResponder seems to have no mouse double click event. Is there an easy way to catch a double click?
0
votes
0answers
16 views
First Responder for NSView's sharing the same Window
I honestly have no idea how to reformulate my question. As I have many thoughts. I've been using katidev.com/blog 's custom XSViewController class, and I started with the laid out example.
My ...
0
votes
1answer
5 views
Intercepting undo while editing a cell-based table view
I'd like to intercept or disable Cmd-Z/Shift-Cmd-Z during a text editing session for a table view cell.
It's a cell-based table view with a series of columns whose values affect each other, such that ...
0
votes
0answers
21 views
View interpretKeyEvents: but pass unwanted ones up the responder chain?
I'd really like my custom view to work with -moveLeft:, -deleteForward:, -selectAll:, etc., but I'd also like to pass any keys I didn't care about onward up the responder chain. Right now I'm ...
0
votes
1answer
57 views
Is there such thing as NSResponder delegate?
In my Cocoa application on the application menu there is a menu item "Delete", which sends a delete: message to first responder. Now, I have the keyboard focus on a NSOutlineView, which is the first ...
0
votes
3answers
79 views
Forwarding drag & drop event to parent view
I have an application where I have one custom view which is derived from NSView.
Within this view, there are several custom subviews, which are also derived from NSView.
I want to implement a drag ...
0
votes
3answers
104 views
mouseMoved not called when over the View
I have subclass of NSView which implements mouseMoved.
However when I move my mouse over the view the mouseMoved never gets called. Why?
I am on OS X Lion.
Thanks,
Vance
0
votes
1answer
93 views
keyDown: is not responding even though the class it is implemented in acceptsFirstResponder
I have made my NSView in my application.
- (BOOL) acceptsFirstResponder
{
return YES;
}
Now my implemented keyDown: doesnt respond... the breakpoint or NSBeep(); I have implemented dont fire.
...
0
votes
1answer
102 views
Perform different actions on button up and down
Ok. I've been digging around trying to find a way to capture button up and down actions. I'm not even sure what the proper terminology in Xcode for this would be. It's pretty easy in MS Visual, but I ...
0
votes
3answers
622 views
-makeFirstResponder: usage
I am fairly new to cocoa programming and I would like to ask if anyone can explain me how to
-(BOOL)makeFirstResponder:(NSResponder *)responder; method works. I was planning on using it for NSEvent's ...
0
votes
1answer
134 views
Replace the NSResponder of an existing NSView
I have a view in an drawing application, it needs to respond in an other way when an other tool is selected. I thought it would be much nicer to replace the NSResonder of that view in stead of setting ...
0
votes
1answer
312 views
NSView - Quick Look and NSResponder
I've subclassed NSView (MyCustomView) and have added it to my NSWindow's Content View in InterfaceBuilder using the custom view object in MainMenu.xib.
I have since added code to accept Quick Look ...
0
votes
1answer
145 views
MouseDragged not released when dragging on other views
I have 2 subclasses of NSView that are subviews to a common superview. They dont overlap and they both intercept mousedragged calls. When I drag from one of the subclasses to the other the ...
0
votes
1answer
78 views
What is the usage of NSResponder's indent:?
NSResponder has a method you override called - indent:, but unsure when it would normally be activated.