Details
-
Suggestion
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
5.4.0 Beta
-
None
-
iOS-8
Description
Apps may wish to allow/forbid certain extension point identifiers
in iOS-8.
For example, from the link below:
To disable custom keyboard in your app completely override the application:shouldAllowExtensionPointIdentifier:
- (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSString *)extensionPointIdentifier {
// Disallow custom keyboards
return ![extensionPointIdentifier isEqualToString:UIApplicationKeyboardExtensionPointIdentifier];
}
Maybe it's related to QTBUG-38184