One Quickie


Dismissing the on-screen keyboard (UITextField->General)
If you know the text field that is being edited, you can tell it to resign first responder:
[textField resignFirstResponder];
Otherwise, you can tell the enclosing view to end editing, and it'll figure out who is editing and tell them to resign:
[self.view endEditing: YES];



borkware home | products | miniblog | rants | quickies | cocoaheads
Advanced Mac OS X Programming book

webmonster@borkware.com