Hide keyboard in UIWebView

后端 未结 2 493
孤独总比滥情好
孤独总比滥情好 2021-02-04 22:09

Is there a way to make a UIWebView dismiss all associated input controls, such as keyboards/pickers?

2条回答
  •  终归单人心
    2021-02-04 22:33

    Haven't tried it in a web view with a picker, but this definitely works to dismiss the keyboard:

    [theWebView endEditing:YES];
    

提交回复
热议问题