我正在尝试禁止用户在我的某个文本字段中使用自己的键盘。在做研究时,我发现我需要以下代码来禁用自定义键盘:
func application(application: UIApplication, shouldAllowExtensionPointIdentifier extensionPointIdentifier: String) -> Bool {
if extensionPointIdentifier == UIApplicationKeyboardExtensionPointIdentifier {
return false
}
return true
}
但是,我不想禁用所有文本字段的键盘。如何才能将其应用于特定文本字段?谢谢!