-2

Possible Duplicate:
UITextField focus

the title may be a bit confusing.. couldn't figure out how to word it right. My question is simple, when the view loads I want a textbox to be selected for editing. Similar the to the next in the iPhone safari textbox editing.

Community
  • 1
  • 1
dillyg10
  • 13
  • 6

1 Answers1

1

Well for it, try the below code.

- (void)viewDidLoad {
  [super viewDidLoad];
  [yourTextField becomeFirstResponder];

}
Sanchit Paurush
  • 6,114
  • 17
  • 68
  • 107