setKeyboardAppearance for UIWebView

后端 未结 3 1196
挽巷
挽巷 2021-01-23 07:47

It is well know that the keyboard appearance of UITextView and UITextField can be set as following :

[self.textField setKeyboardAppeara         


        
3条回答
  •  再見小時候
    2021-01-23 08:31

    Unfortunately, you can not set the keyboard appearance for a UIWebView using Apple's UIKit APIs.

    You can however specify the input type using html tags like so:

    
    

    And here are the other parameters.

    Text: 
    Telephone: 
    URL: 
    Email: 
    Zip code: 
    

    More info in the Apple docs:

    Text, Web, and Editing Programming Guide for iOS

提交回复
热议问题