gpt4 book ai didi

swift - 如何在长按 UITextField 时禁用 "Replace"选项

转载 作者:行者123 更新时间:2023-11-28 08:15:23 28 4
gpt4 key购买 nike

extension UITextField {
override func target(forAction action: Selector, withSender sender: Any?) -> Any? {

if #available(iOS 10, *) {
if action == #selector(UIResponderStandardEditActions.paste(_:)) {
return nil
}
} else {
if action == #selector(paste(_:)) {
return nil
}
}
return super.target(forAction: action, withSender: sender)
}

}

我已经禁用了“粘贴”选项,但无法禁用“替换”选项

最佳答案

这可能不是正确的解决方案,但可能有用:

textField.autocorrectionType = .no

textField 是您想要的 UITextField

关于swift - 如何在长按 UITextField 时禁用 "Replace"选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42687470/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com