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:

How to programmatically disable predictive view in WebView of iOS 8
1.7k views Asked by Hamid At
1
There are 1 answers
Related Questions in UIWEBVIEW
- iOS WKWebView's WKProcessPool - when is it safe to share the same process space?
- I there a Flutter package that implements UIWebView?
- How to prevent the Audio `play` method from stopping sounds in backgrounded apps in a Webview?
- How to open a downloaded .ics file in Calendar app?
- Where to persistently store cookies from WebView IOS?
- open Webview as full screen tab intellij plugin development
- Apple rejected the project because of using UIWebView in pod
- UserAgent cannot be changed from UserDefaults only iOS 17 Device using Xcode 15
- ITMS-90809: Deprecated API Usage with AppsFlyerFramework pod
- Outlook calendar download in webview not displaying the right time in iOS app
- iOS 17 , when entering Chinese characters, the program crashes. The system is using UIWebView
- Delete all WKWebView and URLSession related cached data
- Convert WKWebView to PDF / Swift
- upgrade UIWebView to WKWebView in Cordova
- Is UIWebView will continue in iOS 17?
Related Questions in IOS8
- Are iOS MDM profile config file meant to be public?
- Compatibility of named colors below iOS 11
- iOS12, kReachabilityChangedNotification is not worked
- How to add buttons to wkWebView?
- iOS 8 - show incoming call when app is not active (without CallKit)
- pangestures interactive like mail app in iOS
- Animating swipe actions in tableview
- ASIHTTPREQUEST not working as expected in iOS 8.3
- Xcode 9 - Safe Area Layout Guides Error Comes Back
- Using spotlight in iOS app with deployment target iOS 8
- Issue with UIImage on older iOS versions
- How do you launch an iOS app in the current device orientation?
- uiimageview.image appears to be warped on iOS 8 simulator
- Codename One - Can't read from socket on real device
- iPhone X backward compatibility to cater devices below iOS 8 versions and future compatibility
Related Questions in IOS-APP-EXTENSION
- How do I use my Custom Logger in my notification service extension class? Adding the file to the extension's target membership does not work
- Profile memory usage of iOS File Provider extension
- Convert sequential access of [NSItemProvider] content to parallel using Swift Concurrency
- ProcessSampleBuffer of Broadcast Upload Extension being throttled
- iOS Broadcast upload extension fails to start after clicking on "Start broadcast"
- Wallet Extension - "From apps on your iPhone" option in Apple Wallet App not showing
- Interacting between iOS NotificationServiceExtension and Flutter app
- Unable to run app with app Extension Embedded binary is not signed with the same certificate as the parent app
- How to remove embedded content built for iOS platform from xrOS target?
- CallDirectory app extension runs out of memory without beginning request
- RPSystemBroadcastPickerView not showing preferredExtension
- Is there a way to dismiss keyboard in SwiftUI without calling UIApplication.shared?
- How could I print to console in Share Extensions
- Debugging Ios App Extension in Flutter app
- How to change from command line the Bundle identifier of an App extension?
Related Questions in UIINPUTVIEWCONTROLLER
- Swift can't read the textDocumentProxy.documentContextBeforeInput after entering a newline
- Custom InputView Keyboard Height
- determine safe area for UIInputViewController from UIScreen.main.bounds
- Adding UIDatePicker a non-Date option
- How do I use an inputView with a SwiftUI TextField?
- How to make a custom keyboard using Objective-C that can type images
- What is the difference between UIViewController and UIInputViewController ios swift
- Want to text input in custom keyboard extension
- Can't use UICollectionView in UIInputViewController for keyboard extension
- UIInputViewController (Custom Keyboard) - UIButton action not being triggered - Why, Oh Why?
- UIInputViewController being dismissed after leaving and returning to view controller
- UIInputViewController can't response action that come from UIButton before iOS10
- inputViewController of superview gets called when tapped on subview(UITextView)
- viewWillTransition is giving the wrong size
- UIInputViewController NSAutoresizingMaskLayoutConstraint issue
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
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.