Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

63
votes
7answers
11k views

iPad keyboard will not dismiss if modal view controller presentation style is UIModalPresentationFormSheet

UPDATE 2011-03-31: As of iOS 4.3, you can now implement a disablesAutomaticKeyboardDismissal and return NO, as in - (BOOL)disablesAutomaticKeyboardDismissal { return NO; } (thanks Sebastian ...
6
votes
3answers
240 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 ...
6
votes
1answer
1k views

Unwanted automatic scrolling with UIScrollView and UITextFields as subviews

The "too long; didn't read" version: Is there any way to disable the automatic scrolling behaviour of UIScrollView when telling a UITextField to becomeFirstResponder? I have a scroll view with paging ...
6
votes
2answers
622 views

iPhone UITextView which is disabled becomes first responder when re-enabled

I have an application which has some text views on one of the controllers. When the application is processing these text views are disabled and have their user interaction disabled. The problem is ...
5
votes
3answers
869 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 ...
4
votes
1answer
158 views

Removing a UIView

So I have a view controller called MainViewController with a button which when I press this code is called: NewViewController *newViewController; newViewController = [[NewViewController alloc] ...
3
votes
4answers
88 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 ...
3
votes
2answers
182 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]) ...
3
votes
1answer
496 views

becomeFirstResponder without hiding Keyboard

I have a view that supports copy and shows the edit menu using the following code: if ([self becomeFirstResponder]) { // bring up edit menu. UIMenuController *theMenu = [UIMenuController ...
3
votes
2answers
3k views

UITextField resign first responder iOS4

I have a simple piece of code that works on every system except iOS4. It's about resigning first responder for a UITextField. The text field is all wired up, and here's the code for the delegate: - ...
2
votes
1answer
222 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). ...
2
votes
1answer
912 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 ...
2
votes
4answers
327 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 ...
1
vote
0answers
84 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 ...
1
vote
1answer
327 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 ...
1
vote
0answers
54 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
221 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 ...
1
vote
0answers
54 views

Does a UITextField with first responder status in a UITableViewCell prevent cell re-use?

In a UITableView where the cells contain UITextFields, does having one of those UITextFields be the first responder prevent its cell from being re-used? For example, with a UITableView with more rows ...
1
vote
2answers
134 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
1answer
77 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 ...
1
vote
1answer
353 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 ...
1
vote
3answers
631 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
363 views

Tell any UITextField to dismiss

How can I tell the current firstResponder to resign? I have a UITableView with a bunch of TextFields and I don't know which is active at all times. I thought about storing pointers to all cells in an ...
1
vote
1answer
281 views

Dismissing the keyboard using firstResponder

To dismiss the keyboard I use either one of the following: [sender dismissFirstResponder] [self dismissFirstResponder] The problem is, I have a situation where the user selects a text field, and ...
1
vote
3answers
983 views

Programatically make keyboard go away

I made a text field but I didn't use Interface Builder, I did it programatically in XCode. So now I need a programmatic way to make it resign first responder so that the keyboard will go away when the ...
1
vote
1answer
447 views

Why does my NSWindow only receive mouseOver events the first time?

I have an application where a borderless window is shown and hidden, using orderOut and orderFront. When it is visible, I want the it to become the key window when the mouse moves over it. So far I've ...
1
vote
2answers
239 views

Where do FirstResponder methods come from?

I'm looking at IKImageDemo supplied by Apple, the rotate round-slider is linked to a setRotation: method in the FirstResponder. However, none of the objects in the project seem to HAVE such a method, ...
0
votes
0answers
48 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
1answer
46 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 ...
0
votes
1answer
40 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 ...
0
votes
0answers
103 views

Resign FirstResponder of a UITextField via NSNotification

I've got an UITableView (displayed modally on the iPad) with two different kind of UITableViewCells: The first one is being used to enter text, the second one to pick a value from a list displayed in ...
0
votes
2answers
121 views

NSOpenGLView, NSWindow & NSResponder problem. makeFirstResponder not working

In the code below I am Initialising a ViewController [a NSResponder], with a NSWindow, a NSOpenGLView, presenting the view and attempting to set the ViewController as the windows first responder. It ...
0
votes
2answers
272 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 ...
0
votes
1answer
229 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
62 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, ...
0
votes
2answers
210 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
135 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
66 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 ...
0
votes
1answer
201 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 ...
0
votes
1answer
121 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 ...
0
votes
2answers
159 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) ...
0
votes
1answer
1k 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
87 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 ...
0
votes
2answers
516 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, ...
0
votes
1answer
115 views

touch response event ios4

I added a ViewController to an app for ad banner support. The app was based on a UINavigationController so I added the ViewController as a subview to the UINavigationController. Now the area of the ad ...
0
votes
2answers
526 views

How to access searchBar's clear text button?

When I hit the "clear" button (the one that appears when editing) on the tableView search, I was trying to get the keyboard to disappear. How can I detect when the "clear" button is clicked, so I can ...
0
votes
3answers
365 views

NSTextView overlay causes oddities with first responder status

I have an NSTextView in an NSScrollView, and I am programmatically inserting an NSView subclass as a subview of the NSTextView. This NSView acts as an overlay, superimposing graphical information ...
0
votes
1answer
103 views

Dragging Out of a Table and Responder Chain

I'm trying to build something where I can drag a person object from a UITableView into another UITableView. What I've got working so far is that when I select the item in the table to drag ...
0
votes
1answer
2k views

UISearchBar and resignFirstResponder

I have a very basic UITableView with an attached UISearchBar, and here's the flow of what happens UITableView is empty, user taps UISearchBar, and brings up keyboard. Once the user taps the Search ...
0
votes
1answer
426 views

Problem resigning UISearchBar's firstResponder status

I've got a UISearchBar on my UITableView and a method -finishSearching which looks like this: - (void)finishSearching { [overlayViewController.view removeFromSuperview]; if ([sb ...

1 2