The firstresponder tag has no wiki summary.
0
votes
0answers
16 views
NSTableView NSArrayController NSButton key-equivalent FirstResponder coordination
I have an NSWindow with numerous NSTableViews that are bound to their own NSArrayControllers. Each of these has a set of add and remove buttons to deal with providing new data. I also set up identical ...
1
vote
1answer
47 views
Change first responder in uitableview custom cell?
I'm having a tableview which uses custom cell for the cells. Each cell has four text fields. When I work in first text field and click next in keyboard I want to make the next text field in the same ...
0
votes
2answers
106 views
NSTextView keyDown Event
I want trigger the keyDown Event with every Key action. Therefore I have created a subclass of NSView.
@interface CodrTextView : NSView {
NSTextField *lineNumberSpace;
NSTextView ...
0
votes
0answers
41 views
setting first cell of tableview to be the first responder
- (id)init
{
self = [super init];
if (self) {
Numbers *initialNumbers = [[Numbers alloc] init];
[initialNumbers setFirstNumber:0];
[initialNumbers setSecondNumber:0];
...
0
votes
2answers
68 views
Making a UILabel subview in UIScrollView to be firstResponder
I have added a label with some text and links to an ScrollView,
when you tap on those links (in the label), a delegate method will call, displays a popover and show some related information.
but ...
0
votes
0answers
12 views
Weird One : How do I test if the firstresponder is actually the iphone screen or a wireless/bluetooth keyboard
Just wondering if there is an open call to ask the firstresponder - "physically what are you ?"
The reason is today my app appeared like first responder had gone, only to realise someone had switched ...
1
vote
1answer
127 views
Select or mark text in UITextView without it becoming first responder
Is this even possible?
I want to select/mark text without text view becoming first responder. I have search implemented in UIPopoverController and then when it's dismissed UIToolBar with Next and ...
1
vote
1answer
268 views
a UItextField cant become first responder after a reloadData of a UICollectionView
im new to stackoverflow and objective c, so forgive me in advance :)
i have a UIcollectionView that displays a virtual folder list
when clicking on "Add Folder" a cell is added to the collection. The ...
0
votes
0answers
60 views
What is first responder when I am typing in a text field and meanwhile interacting with other elements?
Usually when we want to get rid that keyboard, a never ending quest, we do something like
[searchBar resignFirstResponder];
Okay, I am confused here.
By the time the code is reached, what is the ...
0
votes
1answer
274 views
iOS6 forms not navegable anymore, pressing next doesn't change to next textfield in forms
I have an issue with the new Xcode 4.5 and iOS6.
I have a form in my app with various textfields and pickers. I usually navigate through them with the Next key on the onscreen keyboard or pressing tab ...
1
vote
0answers
96 views
stop popoverViewController resignFirstResponder after dismissed
I am using a uitableview containing multiple rows, and each row contains two UITextFields side by side. let's say TextField1, TextField2. When a user taped on TextField1, and start typing, a ...
2
votes
2answers
1k views
How to Get Current First Responder from Window Controller in Cocoa?
I would like to find the first responder view in a window. To do this, I would like to implement a category like this:
@implementation NSView (ViewExtensions)
- (NSView *)findFirstResponder
{
...
0
votes
1answer
308 views
NSTextField set cursor
Okay so I feel like there's something obvious I'm missing in this question. I've used makeFirstResponder throughout my code to move from textField 1 to 2, 2 to 3, etc. That seems to work as I want ...
2
votes
1answer
168 views
how to catch when the NSTextView in a NSComboBox gets first responder status
I try to do some treatment when a NSComboBox looses first responder status, and hence gets "resignFirstResponder", however my treatment should happen only when the combobox really loose the first ...
0
votes
1answer
76 views
When we create the standard application in MacOS what is the first responder?
Xcode 4.3 will start producing mainmenu.xib
I look at that mainmenu.xib
It has an object named Main Menu
I go and look at what are the menu points too
Menu Item - Show All for example, link to ...
1
vote
2answers
143 views
How to cycle through cells in UITableView that have not been visible yet?
I am trying to give first responder status to the next table cell of a dynamically generated table, and am doing that by iterating over the tags. That's working well, except when I come to cells that ...
1
vote
0answers
349 views
UIView doesn't become First Responder when parent UIViewController is set as RootViewController
I'm working on Chapter 7 of BNR's iOS Programming book and I've run into a problem. At the start of the chapter I setup a UIViewController (HypnosisViewController) with an UIView (HypnosisView) that ...
0
votes
1answer
162 views
NSSearchField as first responder
guys! I have a NSSearchField in a window's toolbar. I tell the window to set its first responder to the search field: it works. Now: if I ask the window to tell me what's its first responder, it is ...
2
votes
0answers
526 views
Error when making UITextField subView a first responder in UITableView
I am trying to create a UITableView in which you create a new item by pulling the whole table down. Similar to Clear app http://www.realmacsoftware.com/clear/.
I am adding a UITextField
...
1
vote
1answer
295 views
UITextField max inputview height
In my app I'm using an UIView as my inputView for a UITextField. The UIView height is 252.
The problem is that when the textfield becomes first responder only the top 216 pixels are shown.
Is there a ...
3
votes
4answers
3k views
UIWebView with contentEditable (html editing), first responder handling?
I'm making an html editor component for an app (using UIWebView with contentEditable in iOS 5.0), and got stuck at how to handle UIWebView first responder status
[webView isFirstResponder], [webView ...
0
votes
1answer
229 views
Clean way to resign first responder of NSSearchField when done?
In my application I have an NSSearchField that is bound to an arraycontroller which performs searches as the user types.
The problem is that the search field never resigns firstresponder-status once ...
1
vote
2answers
441 views
Showing UIMenuController loses keyboard
I'm making an iphone app similar to the Messages app that comes on the phone. I just set up the ability to copy messages via a UIMenuController, but if the keyboard is showing and someone tries to ...
1
vote
1answer
447 views
Text field responder incompatibility iOS4 -> iOS 5
Curious problem:
Two UITextFields, managed by a single controller, enabled for keyboard input. If one enters a value in field #1 and presses "Next" on the KB, the blinking cursor jumps to field #2 ...
2
votes
1answer
1k views
In UITableViewCell make UISwitch get the click then accesoryView if switch is on
I am trying to build a UITableViewCell that looks like this:
Since I can't post an image yet I'll try to describe it by saying it's a label (left) with a UISwitch (middle) and the accessory (right).
...
0
votes
1answer
302 views
view cant become a first responder
I have view controller. it pushed by another's navigation controller.
In ViewController.m:
- (BOOL)canBecomeFirstResponder
{ return YES; }
- (void) viewDidAppear:(BOOL)animated
{
[self.view ...
7
votes
1answer
309 views
Does a UITextField with first responder status in a UITableViewCell prevent cell re-use?
In a UITableView where the cells contain UITextField objects, does having one of those UITextField objects be the first responder prevent its cell from being re-used?
For example, with a UITableView ...
3
votes
4answers
194 views
Vanishing NSTextField Text
I have a custom view in a .xib file, which I use as the contentViewController for an MAAttachedWindow. The view has several NSTextFields in it.
When I open the MAAttachedWindow first time, everything ...
7
votes
3answers
911 views
Can I override scroll view's automatic behavior to scroll to the first responder?
I have a UITextField inside a UIScrollView (a few levels deep). I am watching UIKeyboardDidShowNotification, and also calling the same code when I manually change the first responder (I might change ...
2
votes
3answers
556 views
NSOpenGLView, NSWindow & NSResponder - makeFirstResponder not working
In the code below I am Initialising a NSViewController [a NSResponder], with a NSWindow, a NSOpenGLView, presenting the view and attempting to set the NSViewController as the windows first responder.
...
2
votes
2answers
370 views
Is this a hacky way to go to the next UITextField (using textFieldShouldReturn)?
- (BOOL)textFieldShouldReturn:(UITextField *)sender
{
if(sender.returnKeyType == UIReturnKeyNext){
// Make something else first responder
}else if(sender.returnKeyType == ...
1
vote
2answers
2k views
Problems setting FirstResponder in Cocoa Mac OSX
Im working on a tiny app just to learn cocoa, and Im having a hard time with setting FirstResponder to some NSTextFields.
When the view opens, I want the first NSTextField, clientNumber, to be ...
4
votes
2answers
285 views
Programmatically determine order in which UIView items should be read by VoiceOver
I am making my iPhone app accessible. VoiceOver is pretty impressive. When a user uses VoiceOver, it automatically reads off the items on the screen and allows the user to double-tap anywhere on the ...
2
votes
2answers
3k views
Setting the inputAccessoryView of a UITextField to its superview
I have a UITableView with an Add cell... row and would like to have a keyboard pop up with a view above it like in the "Messages" application, where the user can type the name of the new cell.
I ...
0
votes
1answer
815 views
NSView (Content View) as firstResponder
I have a Content View that I use in my preferences nib.
I use a method to change the font of a NSTextView in my app.
This Content View has to be set as firstResponder to get messages from my ...
0
votes
1answer
165 views
How do I stop a WebView from disabling edit menu items instead of passing them on to my Window Controller?
In my NSDocument-based application, my document's window just contains a WebView. I have defined cut: copy: paste: and delete: in my NSWindowController subclass, which is otherwise functioning nicely, ...
4
votes
4answers
1k views
I want a UItextField that is in UITableViewCell to become first responder only when the cell touched
This is what I'm trying to achieve:
I want a UITextField that is in UITableViewCell to become first responder only when the cell touched. I would like the text field to become the first responder ...
0
votes
2answers
447 views
Setting UITextView's editable to NO always resigns FirstResponder. Can be avoided?
My app basically lets you send a piece of text. When the user taps send, I would like to disable the text view which contains the text so the user can't edit it anymore as the text is being sent. It ...
0
votes
1answer
297 views
Blinking cursor shows up when I click on UILabel, coupled with appearance of a keyboard
I have built a custom UITableView with two cells. In one cell I have added a UIImageView, in another a UILabel. when I click on the cell with the UILabel an unwanted keyboard pops up with a blinking ...
0
votes
1answer
116 views
Change default insertTab: action in NSSearchfield
I have a view with a nssearchfield a nstableview and a nsmatrix with three radiobuttons. Using delegates i change the selected radiobutton when the searchfield is the firstresponder and the user press ...
1
vote
1answer
924 views
Setting nextKeyView in IB; key view order is different when the app is run
I have a window full of text fields and buttons and I want to set its key view order in a particular way.
So, I set the initialFirstResponder to the first text field and correctly set the nextKeyView ...
8
votes
3answers
4k views
iOS unit test: How to set/update/examine firstResponder?
How do you write first responder unit tests?
I'm trying to write a test to confirm that a method advances focus to the next text field. controller is a descendant of UIViewController. But this ...
0
votes
1answer
194 views
does a modalviewcontroller resignFirstResponder of the parentviews subviews?
in order to recognize if a user jumps from editing one textField to another by just touching another one instead of hitting the return button i implemented a method which gets called with the event ...
3
votes
2answers
441 views
Best way to wire up NSMenuItems from Interface Builder?
So I've spent some time checking out CocoaDev, reading the Cocoa docs on NSMenuItems, and doing some tests in Interface Builder.
In my application I have an application menu ([NSApp mainMenu]) ...
1
vote
1answer
557 views
Cocoa: NSTextField and Fullscreen-Mode with enterFullScreenMode:
currently I'm experimenting with the enterFullScreenMode: option of NSWindow making a subview of the window's contentView the new fullscreen view which works nice. However, my view contains a ...
0
votes
2answers
362 views
Couldn't detect device's shakes
I'm trying to detect when the device(iPhone/iPod Touch) shakes, what I have already done (in my viewController.m) is :
- (BOOL) canBecomeFirstResponder{
return YES;
}
.
- (void) ...
2
votes
3answers
1k views
motionBegan not being called in whole application
Hi all
I have an app where I allow the user to post something on their pinwall of facebook. I used the DemoApp directly from Facebook to set it up.
I have implemented a shake detection that does ...
1
vote
3answers
4k views
How to detect tap on uiview with lots of controls?
My problem is about tap detection.
I have a uiviewcontroller and there are some controls on uiview (labels, buttons, tableview, imageview, etc..)
When I tap the uibutton I display a small uiview ...
0
votes
1answer
139 views
UISearchBar error when entering Searchbar textbox
I have found a strange error. I have been following this sample:
http://jduff.github.com/2010/03/09/throwing-a-uinavigationcontroller-uitabbarcontroller-and-uisearchbar-together/
I tested it and ...
1
vote
2answers
911 views
resignFirstResponder to UITextViews on UITableViewCells that are no longer on screen
I have a UITableView with a whole bunch of custom UITableViewCells in it. Each of these UITableViewCells has a UITextView in them.
The problem I'm having, is that if the user touches a UITextView, ...


