I'm designing a custom keyboard for iOS 8. It works fine on any UITextField but when it's in UIWebView, it shows predictions. Since it's allowed to have custom keyboard in iOS 8 I assume there should be a way to disable this view. Any help would be appreciated. Red area of the following picture:
相关问题
- Loading local file in WKWebView doesn't workin
- Animation delay on left side of screen in iOS keyb
- iOS use UIKeyboardTypeDecimalPad in UIWebView form
- Swift UIApplication.setStatusBarStyle Doesn't
- Remove or change color of frame around UIWebView d
相关文章
- Where does a host app handle NSExtensionContext#co
- Navigation bar disappears when typing in UISearchC
- Do all browsers on iOS use WKWebview or UIWebVIew?
- iOS 8 Today widget alignment issue
- How to prevent UIWebView video from getting remote
- How to find last load of UIWebView(Ready State 4)
- Using the device simulator for iOS 8 with Xcode 7
- Using UILexicon to implement autocorrect in iOS 8
I found a workaround solution for this problem. If you add type="email" instead of type="text" in your HTML file like bellow, iOS keyboard won't show the predictive view :)
I temporarily mark this answer as the solution but if someone finds a way to do it from Objective-C part, I'll test and accept that answer as the solution.