views:

345

answers:

3

hi,

How to hide the keyboard programatically in iphone ?

+5  A: 

Tell the UIResponder subclass that is currently first responder to resign its first responder status:

[responder resignFirstResponder];
glorifiedHacker
A: 
[textFieldName resignFirstResponder];
Sam Jarman
A: 

Can this be done in Dashcode using javascript??

JAnton