Tagged Questions
The first-responder tag has no wiki summary.
10
votes
4answers
9k views
Objective-C / Cocoa, “First Responder” - Did I get that right?
Let me summarize this shortly: A "First Responder" in a nib file is an object, which represents the UI control element that has the user's focus. So if the user clicks on a control, the nib sets that ...
5
votes
4answers
2k views
Keyboard Animation Issues When Calling becomeFirstResponder within a Modal View Controller
I've been having some issues with calling -becomeFirstResponder on a UITextField contained with a view controller that is presented modally. I call this method in the modal view controller's ...
4
votes
2answers
1k views
iphone UISearchBar Done button always enabled
I have a UIViewController with a UISearchBar. I have replaced the Search Button by a Done button.
However, when one taps on the searchbar, the Done button is initially disabled. This occurs until ...
4
votes
1answer
1k views
Make UISearchBar first responder when View Loads
I have a simple UIViewController and a UISearchBar, when the view loads I want to have the search bar become the first responder right away so that the keyboard is showing and they can start typing ...
4
votes
4answers
10k views
Telling a UITextField to become first responder while embedded in a UITableViewCell
I have a UITextField that is a subview of a UITableViewCell.
When my view loads, I want the text field to become first responder. I have a pointer to the text field in the table cell, so to do this I ...
3
votes
3answers
287 views
Objective C: Can I set a subview to be firstResponder?
I have a situation whereby I am adding a view from another viewcontroller to an existing viewcontroller. For example:
//set up loading page
self.myLoadingPage = [[LoadingPageViewController alloc]init ...
3
votes
2answers
828 views
How can “First Responder” be used in a xib file?
i read about responder chains, and basically i read about how the events from the UI are passed up on the responder chain, how to handle them and how to pass along. I also used -becomeFirstResponder ...
3
votes
1answer
293 views
Which NSTextView is the First Responder?
I'm working on a Cocoa programming exercise, and I need to be able to determine which of two NSTextView objects is currently being edited. I think it's something to do with finding the first responder ...
2
votes
3answers
100 views
hitTest fires when UIKeyboard is tapped
I'm trying to fix a bug that involves UIView hitTest:withEvent: being called on my view when the touches are on the UIKeyboard, but only after the app has been in the background.
It was occurring in ...
2
votes
1answer
113 views
UIResponder class and first responder roles
I read in the UIResponder class reference:
There are two general kinds of events: touch events and motion events.
The primary event-handling methods for touches are touchesBegan:withEvent:, ...
2
votes
1answer
89 views
NSTableView hit tab to jump from row to row while editing
I've got an NSTableView. While editing, if I hit tab it automatically jumps me to the next column. This is fantastic, but when I'm editing the field in the last column and I hit tab, I'd like focus to ...
2
votes
1answer
161 views
Understanding system logic for first responder
I'm confused about severals first responder points:
If I call - becomeFirstResponder, does system call – canBecomeFirstResponder first? Why?
Why are there both - becomeFirstResponder and – ...
2
votes
1answer
185 views
Why does setting initialFirstResponder have no effect?
I have a simple form (NSWindow) with 3 text fields. NSWindow's initialFirstResponder is 'pointing' to the first field (NSTextField). All three text fields are circularly linked to each other via ...
2
votes
1answer
496 views
Getting a WebView to act exactly like Safari
(edited to give a better description of the answer I gave)
I have created a very simple browser in InterfaceBuilder consisting of a nav bar and a webview.
Everything works fine except when I try to ...
2
votes
1answer
714 views
resignFirstResponder causing EXC_BAD_ACCESS
I've got a UITextField on UITableViewCell, and a button on another cell.
I click on UITextField (keyboard appears).
UITextField has the following method called:
- ...
2
votes
2answers
1k views
Handling messages to the first responder in a view controller
I must be missing something simple, but I can't see it. First, the setup:
DATreeView, a subclass of NSView
DATreeViewController, a subclass of NSViewController
MainMenu.xib has an instance of ...
2
votes
0answers
496 views
Which should be the first responder: my view or UIDatePicker?
I'm creating sibling of UITextField, but with UIDatePicker instead of a keyboard.
I want multiple such controls to play nicely with each other and also standard UITextField (i.e. swap keyboard for ...
1
vote
1answer
58 views
Resizing view on becomeFirstResponder and resignFirstResponder - Cocoa (OS X)
I have a search field whose original width is small (because it looks better that way). However, when the user clicks on the search field, I want to make its width bigger by a certain amount. When the ...
1
vote
1answer
100 views
First Responder not setting focus on uitextfield
I am trying to set the focus of a uitextfield. Using this code
[_partNoTextField becomeFirstResponder];
When I run the code, the keyboard goes away and the text field is not in focus. I need it to ...
1
vote
2answers
117 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
334 views
Keyboard doesn't dismiss even when a UIResponder object resigns it's first-responder status
I managed to customize the UIAlertView putting two UITextFields as subviews inside of it but in doing so somehow the keyboard broke.
When I try to dismiss it resigning the first responder it doesn't ...
1
vote
1answer
108 views
Can we change nextResponder?
I got a bunch of search box. Under the search box there are tableviews.
If a user click a tableview (or anything outside the search box), I want search box to lose first responder status.
However, ...
1
vote
2answers
134 views
can i use the back button in first responder iphone xcode?
When I click the first responder in the xib, the inspector shows several things, such as go back, reload, and other outputs that look like they can be connected to the webview.
i didnt create any of ...
1
vote
1answer
139 views
UIButton in PopoverView with own XIB should send action to mainview
I have a popover view which is called with:
Info *infoview = [[Info alloc]init];
pop = [[UIPopoverController alloc]initWithContentViewController:infoview];
[pop setDelegate:self];
[pop ...
1
vote
3answers
131 views
Resign first responder from separate class
I have a class that makes a keyboard toolbar which has "Next", "Previous", and "Done" buttons on it. Is there a way for this class to know (or find out) what objects are on the screen at any time?
...
1
vote
1answer
554 views
iPhone: dismiss keyboard when user touches background
I have read some other articles like here and here but unfortunately there are some differences in my code that won't make these work (so please don't suggest these answers).
I would like to dismiss ...
1
vote
1answer
387 views
UIView take away first responder status
Imagine the situation when you have UITableView placed into UIScrollView.
If you tap on table view and begin vertical moving - UITableView become first responder and will scroll vertically. But if ...
1
vote
1answer
301 views
iOS — is it possible to force a UILabel subclass object to become the first responder?
Is there any way to do this?
I tried putting the following into the subclass:
-(BOOL) canBecomeFirstResponder {
return YES;
}
But when I sent the object a becomeFirstResponder message, it ...
1
vote
1answer
503 views
toolbar on top of the keyboard with firstresponder
This is a pretty common topic and has many answers out there.
Situation: I have a full screen (minus toolbar) UITextView with a UIToolbar at the bottom. when the UITextView gets first responder I ...
1
vote
1answer
551 views
UIScrollview with two images - Keeping 1 image zoomable and 1 image static (fixed size)
I have a UIView which contains a zoomable UIImageView and also another semitransparent UIView on top of that.
What I am trying to achieve is to be able to zoom the UIImageView while keeping the ...
1
vote
2answers
4k views
iPhone first responders
I am confused about the iPhone responder chain. Specifically, in the iPhone event handling guide ...
1
vote
3answers
3k views
Change UITextField background when editing begins
I'd like to change the background image of a UITextField when it becomes the firstResponder to show the user that it has focus, similar to the :active or :focus pseudo-classes in CSS.
I'm guessing ...
1
vote
2answers
2k views
Responder actions and responder chain
I am relatively new to IPhone coding, although I have reached the point of working on a genuine (hopefully) saleable app.
But one thing that is still mysterious is the responder chain. All the books ...
1
vote
2answers
4k views
How to “transfer” first responder from one UIView to another?
I have a UIView subclass (CustomView for purposes of this question) that has its own handling of all touches events (Began, Moved, Ended, Cancelled). I also have a UIButton that is a sibling of ...
0
votes
1answer
20 views
Cocoa Responder Chain and Context Menu Click
I have a view-based NSTableView populated custom NSTabelCellView subclass, which are the lowest objects in the view hierarchy (no subviews). I overrode the mouseDown: method to intercept mouse clicks. ...
0
votes
0answers
29 views
iOS - FirstResponder Issue
I think I have a firstresponder issues within my application.
My application hierarchy goes as such:
UITabViewController
|
UINavigationController
|
ViewController *
|
ViewController(s) (There are 3)
...
0
votes
2answers
122 views
How to make ios keyboard appear manually appear?
I have a custom view which will act as a text field and another custom view hat acts as its keyboard. I was planning on implementing uikeyinput protocol, but since its a custom keyboard, it can't send ...
0
votes
1answer
15 views
tryToPerform:with: not being called when keyDown: is being called
I have a NSViewController which I manually put into the responder-chain by calling
self.nextResponder = self.view.nextResponder;
self.view.nextResponder = self;
When the user presses keys inside ...
0
votes
1answer
44 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
1answer
39 views
Keep UITextField from resigning first responder status
In my UITableView I have only a single cell, with a UITextField in it. The setup is identical to the change phone name table view on the iPhone with iOS 5. The problem is, whenever the user drags the ...
0
votes
2answers
57 views
Why does the keyboard not show when a view is popped from the navigation stack?
I have several UITextField objects on a view. When I press on them, I get a keyboard and the UIKeyboardWillShowNotification event as well. When I push a new view controller on to the stack while one ...
0
votes
1answer
51 views
iPad event interception; a double query
So I hope to release an update to one of my apps, and I'm having a bit of trouble with events being intercepted by the wrong objects. My problem is double edged.
I have a uitextfield (that I spent ...
0
votes
1answer
86 views
UIMenuController and the responder chain: what's going on?
I am using the UIMenuController on a custom UIView subclass. This means it can become first responder, and claims it canPerformAction on the "delete" action.
I would also like this view's superview ...
0
votes
0answers
78 views
Adding a Subview to UITableView UIResponder issue
I am trying to achieve an action similar to pull to refresh, but instead of refreshing I want to have a Quick Add view which has a UITextView. I have already implemented this by creating a view, ...
0
votes
0answers
52 views
GHUnitIOS testing a subclass of UITextField when it is the first responder
I am using GHUnitIOS 0.4.28 trying to write a test for a subclass of UITextField testing it when it is the first responder.
- (void) test_asFirstResponder
{
SubClassOfUITextField *foo = ...
0
votes
0answers
31 views
Jquery: Cloning a dynamic select with autocomplete easily
I have a great three-tier working autocomplete and then drop select. It starts with an autocomplete which then displays results based on select. Following the second-tier drop select a third-tier ...
0
votes
1answer
308 views
NSTextField events and resigning first responder
I want to implement an NSTextField where when I click it, it selects all the text. (to give the user easy way to delete all current text)
when I finish editing it, either by pressing enter/tab or ...
0
votes
2answers
355 views
iPhone- After resigning first responder on UITextField, can't refocus it
I have a modal window that's used for searching data from a remote server- it has a UITextField as the titleControl of the navbar for the window, and a tableview filling the window (that displays the ...
0
votes
2answers
244 views
Dismissing the First Responder/Keyboard with multiple Textfields
Like seriously after going through this...
Easy way to dismiss keyboard?
... I have multiple TextFields and a few TextViews. Is there not a way to a have a batch or group Dismiss First Responder for ...
0
votes
1answer
59 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, ...