您的位置:首页 > 移动开发 > Swift

iOS强制使用系统键盘的方法(Swift)

2017-05-23 00:00 288 查看
func application(_ application: UIApplication, shouldAllowExtensionPointIdentifier extensionPointIdentifier: UIApplicationExtensionPointIdentifier) -> Bool {

if extensionPointIdentifier.rawValue == "com.apple.keyboard-service" {

return false

}

return true

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: