becomefirstresponder

iphone monotouch BecomeFirstResponder in UISearchBar

In Monotouch when we call BecomeFirstResponder on a UISearchBar in the ViewWillAppear method, it does not cause the keyboard to appear. Is there something that needs to be set before this can happen. The View I am using is very simple at this point, just t single line of code in the ViewWillAppear; ...

UITextField subview of UITableViewCell to become first responder?

I have a core data application which uses a navigation controller to drill down to a detail view and then if you edit one of the rows of data in the detail view you get taken to an Edit View for the that single line, like in Apples CoreDataBooks example (except CoreDataBooks only uses a UITextField on its own, not one which is a subview ...

UITextView: How to programmatically set selectedRange and becomeFirstResponder?

I have a UITextView containing a document. If the user touches the document, the insertion point (selectedRange property) is set appropriately and the UITextView becomes the first responder (keyboard appears). YAY! How can I do the same thing programmatically? Let's say I have a button titled "Edit at character 1,000". I want that t...

iphone SDK Keyboard problem

I have a login view controller that has a button and a UI text view that becomes the first responder. When the button is clicked it loads the forgot view controller and a new UI textview becomes the first responder. When I dissmis the modal view controller the keyboard also gets dismissed and when I load the forgot view controller again ...