How to hide the keyboard programmatically in iphone

后端 未结 6 2126
春和景丽
春和景丽 2021-01-11 13:43

How to hide the keyboard programmatically in iphone?

6条回答
  •  耶瑟儿~
    2021-01-11 13:53

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

    [responder resignFirstResponder];
    

提交回复
热议问题