I donβt know the real reason, but when the application has a WebView and a third-party keyboard, such as Swype, the program crashes. I have repeatedly repeated this problem. Therefore, if your application uses a WebView such as Cordova, iAd, Admob, you will see these strange crashes. I do not know how to prevent this problem. This only happens on iOS and iPhone only. My crash reports display iPhone 5, iPhone 6, iPhone 6 Plus.
Edit: I think the code given by @ Kurt.F can solve the problem for now. Add the following code to your AppDelegate.swift file. All loans go to @ Kurt.F
func application(application: UIApplication, shouldAllowExtensionPointIdentifier extensionPointIdentifier: String) -> Bool { if extensionPointIdentifier == UIApplicationKeyboardExtensionPointIdentifier { return false } return true }
Meanteacher
source share