Hi, Apps may wish to allow/forbid certain extension point identifiers.in iOS-8.
For example, from the link below: http://stackoverflow.com/questions/25911004/is-it-possible-for-an-app-to-disallow-custom-keyboard-in-ios-8 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]; } The question is how/where it could be done in a Qt application. I've opened QTBUG-42123 in October. Thank you in advance. Regards, Robert _______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest