In Apple Cocoa programing, the first responder is the first object in a chain of NSResponder subclasses to be called upon receiving an even such as keypress, mouseclick, etc.

learn more… | top users | synonyms

0
votes
1answer
49 views

UITextField becomeFirstResponder is not working inside dynamic cell

I have UITextField inside the first cell of UITableView, whenever it changes the table is changing too. The problem is that when the table is updated the field loses first responder status and ...
0
votes
0answers
45 views

BecomeFirstResponder() not working on UITextField

I want to focus my UITextfield in my bottom toolbar, so on ViewWillAppear I wrote the following code: textBarcode.BecomeFirstResponder (); But the textBarcode doesn't become the focus. I also tried ...
1
vote
1answer
30 views

Change UITextField background when editing begins for multiple fields

So I found this thread a while ago: Change UITextField background when editing begins The top answer is a fantastic resource for changing the background image of a textField when the user edits it. ...
0
votes
2answers
35 views

firstResponder is not getting set [duplicate]

After a UITextField is edited and return is pressed, I loop through and check for the next field. I get the index path of that field, then save it. Next I reload table data and when the table is ...
0
votes
1answer
52 views

UITextField nextResponder only works once

I have multiple UITextField's and am trying to click next to switch between them. I have set the tags for each one from 1-4. When I run my code, it moves to the second one, but won't move to the ...
2
votes
3answers
139 views

Implementing Prev./Next buttons in UITableView to make first responder a UITextField in a non-visible cell

in my app I have a UITabeView with UITextFields inside every cell. However I'm having troubles implementing previous/next buttons to make the text field inside the previous/next UITableViewCell be the ...
0
votes
1answer
69 views

How to get the keyboard size without UINotifications IOS

I have a text field and a text view on screen. When my text view is the focused I need to show another view but if the text field is focused not show the view. I am using the UINotification methods to ...
0
votes
1answer
62 views

How to make NSPopUpButton accept firstResponder status?

I have an NSPopUpButton and even a simple subclass of NSPopUpButton. In the subclass I have: - (BOOL)acceptsFirstResponder { return YES; } - (BOOL)refusesFirstResponder { return NO; } Now it's easy ...
1
vote
0answers
45 views

Responder chain - make UITableView don't scroll if the user scrolls on part of the cell

So I have a cell, but there is one view in the contentView of the cell where I don't want the table to scroll if the user has scrolled. So is this even possible? According to the responder chain, ...
1
vote
1answer
174 views

Present ViewController modally shows weird animation

I'm trying to create a simple modal view controller that lets you edit text using a text view. However, when I present the view controller modally, it slides in from the bottom left direction instead ...
0
votes
1answer
48 views

How to make UITextView register touches when it is currently first responder?

I need a way to know when a UITextView is touched while it is first responder. I have seen some threads about this but I have never figured out how to make it work. I'm assuming there must be a way? ...
0
votes
2answers
78 views

How to I stop a UIButton (being used as a custom clear button) resigning a UITextField as first responser?

I'd need to create a custom clear button for a UITextField (because of my color scheme). I'm using the following code (where the class is a UITextField descendent): UIButton *clearButton = [[UIButton ...
0
votes
1answer
77 views

`controlTextDidEndEditing` gets fired when TextField becomes first responder

I'm trying to detect when user finishes editing a NSTextField by implementing NSTextFieldDelegate's controlTextDidEndEditing: method. However the problem is that upon initially making the NSTextField ...
0
votes
0answers
65 views

Xcode set nextKeyView programmatically

When using couple NSTextFields for user input: 1.) Is it possible to set the focus to a specific NSTextfield programmatically after using the return key? Using nextKeyView in the IB doesn't do the ...
0
votes
1answer
141 views

UIButton doesn't dispatch touch event after uitextview becomes first responder

I have an UITextView that should become the first responder (display the keyboard) when the controller loads. The only thing is, that I have 'inflated' two UIView which each contain an UIButton. The ...
0
votes
0answers
37 views

Next key view is not working properly

In my app,I had given first responder as tableview,then I had connected tableview's nextKeyView as textfield,correspodingly I had given nextKeyView connection to all other components in xib.But when i ...
1
vote
3answers
97 views

UITextField that is always first responder

I have a ViewController that is just a textfield, a next button, and a back button. I want the text field to always be editable while having the keyboard always present. I also want to customize the ...
0
votes
1answer
60 views

Make UIScrollView a first responder

I have created a barebones iOS application that adds a single UIScrollView to the Window (no ViewControllers or UIViews -- I just did this to see if I can understand what's going on.) All I want is ...
1
vote
0answers
60 views

Disabled keyboard state in iOS 6?

I have implemented a "token" or "chip" text field similar to the stock messaging apps where a user enters entries which become colored tokens. When a user presses backspace, it highlights the token, ...
0
votes
0answers
36 views

Error beep when tabbing through TextFields

In my application, I have four custom textFields - (subclass of NSTextField) whose super view is a CustomView (subclass of NSView). The goal here is, each time I press the tab key, the focus has to ...
0
votes
2answers
221 views

get notified when UITextField becomeFirstResponder

How I can get notified when UITextField becomeFirstResponder ? I can check like isFirstResponder or set to to become first Responder by becomeFirstResponder I want to get notified or handle an event ...
0
votes
1answer
88 views

iOS) HIding Keyboard in a cell in UITableView

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"searchCell"; UITableViewCell *cell = [tableView ...
1
vote
2answers
144 views

iOS dismiss keyboard but keep editing [closed]

I have a UITextView that is being edited and I want to add a custom keyboard... is there any way to dismiss the keyboard but leave the textView in edit mode so the blue cursor keeps flashing? Or ...
0
votes
1answer
50 views

FirstResponder missing redo:

Why my FirstResponder in InterfaceBuilder's file is missing redo: connection (in Received Actions list)? undo: exists, but redo: doesn't. How could I fix it?
-1
votes
1answer
166 views

NSButton subclass as colorwell & preventing NSColorPanel from touching the first responder

I followed some examples for making an NSButton subclass work as an NSColorWell (since our NSButton subclass already gives us the appearance behavior we need), however I've noticed that after using ...
0
votes
2answers
68 views

Presentation overlay for iOS

When I demo my touch apps to remote teams the people on the other end dont know where I am touching. To remedy this, I have been working on an event intercepting view/window that can display touches ...
0
votes
1answer
97 views

Cocoa validate menu items in multiple windows

I have a menu item "foobar" that i need to enable on my main window (app delegate), but disable on all other windows. I'd like to know how to do that, because the first responder business is very ...
0
votes
3answers
311 views

Attempt to delete row containing first responder that refused to resign

I have an iOS 6-based project that implements a UITableView. Each cell in the table view contains a UITextField allowing the user to enter information. If the user clears a text field, or deletes all ...
0
votes
1answer
87 views

List of all the subviews a UITouch event is forwarded to

I have a UIScrollView with some views inside. When I tap on it I want to be able to understand if the touch occurred in an clean area or in area where there is a subview. How can I do that?
0
votes
2answers
83 views

Is it possible to slide in the keyboard from the side, rather than the bottom

When a control becomes the First Responder, normally the keyboard slides in from the bottom. How can I change that behavior and make it slide in from the left or the right instead? It makes much more ...
1
vote
0answers
104 views

sqlite3_step block for couple of seconds when called first time on iPhone

I have an app for iPhone who use the sqlite to read a database. Before I update my iOS from 4.3 to the latest one everything was fine. But since then, I notice a considerable loading of the data. I ...
1
vote
1answer
108 views

Silence Cocoa error beep

I have a Cocoa application that captures keypresses through a custom view in the view hierarchy. This view implements the keyUp and keyDown methods, and the keypresses are received. Even so, Cocoa ...
0
votes
1answer
401 views

UI keyboard not appearing when UI textfield tapped after model to a different view controller

Ok. So I have been testing out a simple application on xcode to become familiar with the platform, but I've come across an interesting situation. Using storyboard, I've dragged two view controllers ...
0
votes
1answer
327 views

Get notified when NSTextField resigns first-responder status without subclassing

I have an NSTextField which I add to the view hierarchy of my custom view and set the position for when the user clicks inside that custom view. If the text field resigns first-responder status, e.g. ...
0
votes
2answers
112 views

Programmatically focus on UITextView is not working

Before closing the post as duplicate,believe me,i am searching this for 2 days but still nothing. I will try to be as clear as possible: I have a view with a textview.I need to set focus ...
1
vote
0answers
32 views

What determines the list of action for first Responder? [closed]

If I click firstResponder and see all the outlet I saw this pics: I recognize the name as some of the name of my selectors. I noticed that The fact that selector is public or not doesn't seem to ...
1
vote
1answer
196 views

Getting rid of the standard items in an UIMenuController

I'm working on a very small editor in iOS. It only has one view, one button and a textView. When the button gets pressed, a custom UIMenuController pops up with 3 options: toggle bold, toggle italics ...
0
votes
1answer
80 views

UITableViewCell has UITextField, cell can be removed but crashes when it is first responder

I have a custom UITableViewCell, which has a text field in it, the cells can be removed, then I got a problem when the table is in editing mode and the cell also got first responder for the text ...
0
votes
0answers
82 views

Transfer touch between two subviews

I use the moving of a view to create a duplicate of it to use as an alias. Yet I would like to have the movement on the original view been transferred to the copy so that keeping the movement it ...
0
votes
1answer
246 views

Animate UITextview change out, Keep keyboard in place

I have a UITextview, becomes first responder and keyboard is presented. Presently, I have buttons in inputAccessoryView toolbar that exchange the text forward and reverse through an array of strings. ...
0
votes
0answers
63 views

Does the UITextField keyboard stay in memory?

Using instruments I see a large series of allocations when I present a modal UIView. This view presents with a UITextField as the firstResponder (i.e. the keyboard is displayed). When I dismiss the ...
0
votes
1answer
70 views

The uiviewcontroller child of a uiviewcontroller not reacting to touches

I have a UIViewcontroller that have several views and one uiviewcontroller as childs. The uiviewcontroller include a tableview. The child uiviewcontroller has the delegate and datasource methods. I ...
2
votes
1answer
230 views

Specify editing NSTextField inside NSPopover on appearance

I'm working on an app that presents an NSPopover containing a number of NSTextFields. While I can tab between these fields as I expect, the popover is selecting a particular text field to be in the ...
0
votes
0answers
154 views

What causes the iOS dictation keyboard to hide itself?

I am trying to debug an issue where when a user enables dictation, the dictation keyboard becomes disabled and/or switches back to the normal keyboard by scrolling a UITableView drawn above a ...
12
votes
3answers
3k views

Can't type text into UITextField or UITextView in iOS6

In one of my apps, when I try to edit (type some text) UITextField, UITextView or any other 'text-able' UIControl the cursor just blinks but no characters are typed in except BACKSPACE (possible only ...
2
votes
1answer
944 views

UIVIew endEditing:YES doesnt hide the keyboard

I have a UIVIew which is a subview and it contains several UITextFields. One of these textfields (which is for DATE) should not be editable using the keyboard, instead of this I use a PopOver with a ...
2
votes
1answer
44 views

UITextField - Action on resignFirstResponder — possible?

I have created a form that has a number of text fields that save to NSStrings that are then used deeper in the app. Currently, if you hit the return key (done) on the GUI keyboard, the keyboard is ...
0
votes
1answer
149 views

NSTextField subclass doesn't respect -acceptsFirstResponder?

I'm working with NSTextFields and enabling/disabling selection and editing, and I ran across some strange behavior in a sample app. I have a subclass of NSTextField called MyTextField; the only thing ...
0
votes
1answer
141 views

What would cause a view controller to lose firstResponder status?

In my parent view controller I have this: - (BOOL)canBecomeFirstResponder { return YES; } - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; NSLog(@"BECOMING FIRST ...
0
votes
0answers
65 views

NSColorWell and Responder subclassing

I want to have ability to rect to key events, so I subclass Responder. Code: -(BOOL)acceptsFirstResponder { NSResponder *currentNextResponder = [NSApp nextResponder]; [NSApp ...

1 2 3