2015-10-07 276 views
-1

我的應用程序是使用uiwebview(使用js,css ..)的博客編輯器應用程序。遇到問題時,我想將鍵盤從默認(文本)更改爲手機墊。谷歌搜索我知道一種使用方式,但沒有幫助我的情況。是否可以更改UIWebView中的keybroadType

這有可能改變鍵盤類型像UITextViewUITextField

// textField is set to a UIKeyboardType other than UIKeyboardTypeEmailAddress 
[textField setKeyboardType: UIKeyboardTypePhonePad]; 
[textField reloadInputViews]; 

也許繼承UIWebView定製像 UIWebView+GUIFixes

感謝提前!

+0

如果你使用搜索作爲uitextfield意味着它可能 –

+0

UIWebview兄弟:) – HoanNguyen

回答

0

無法爲UIWebview設置鍵盤類型。 可以通過設置網頁中使用的輸入元素類型來實現。

<input type="text"> 
<input type="tel">