On Aug 25, 2009, at 9:02 AM, Andy Lee wrote:

On Aug 25, 2009, at 8:28 AM, Brian Bruinewoud wrote:
On 25/08/2009, at 20:42 , Georg C. Brückmann wrote:

On 25.08.2009, at 12:30, Brian Bruinewoud wrote:

I have a simple view that contains a UITextField and a UIButton. The user will most often want to type text and ignore the button. Is there some way I can make the keyboard appear immediately that view is shown? I can't find anything in IB and reading about UITextField, UIView, UIWindow, UIResponder didn't enlighten me.

-[UIResponder becomeFirstResponder], e. g.:

- (void)viewDidLoad {
[super viewDidLoad];
[_myTextFieldOutlet becomeFirstResponder];
}

Actually, that's not correct,

You seem to be right about this part -- becomeFirstResponder doesn't bring up the keyboard for me, or I'm doing something wrong.

--Andy

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to