swift 如何禁用 SkyFloatingLabelTextField 中的复制粘贴功能?

How to disable the copy paste functionality in SkyFloatingLabelTextField in swift?

我正在为 UITextfield 使用 SkyFloatingLabelTextField class,如何禁用此文本文件的复制和粘贴功能。

将此技术用于自定义文本字段

   class SkyFloatingLabelTextField: UITextField {
        open override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
            if action == #selector(UIResponderStandardEditActions.paste(_:)) {
                return false
            }
            return super.canPerformAction(action, withSender: sender)
        }
    }

创建自定义 class 继承自 SkyFloatingLabelTextField class 然后赋值。

class FloatingTextField: SkyFloatingLabelTextField {
    open override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
        if action == #selector(UIResponderStandardEditActions.paste(_:)) ||
            action == #selector(UIResponderStandardEditActions.copy(_:)) {
            return false
        }
        return super.canPerformAction(action, withSender: sender)
    }
}

如果您想要为整个项目和所有文本字段添加此扩展。

extension SkyFloatingLabelTextField {
    open override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
        if action == #selector(UIResponderStandardEditActions.paste(_:)) ||
            action == #selector(UIResponderStandardEditActions.copy(_:)) {
            return false
        }
        return super.canPerformAction(action, withSender: sender)
    }
}