If we want to disable all the actions like Copy, Paste, Replace, Select, etc from UITextField then we can use following custom text field:
class CustomTextField: UITextField {
var enableLongPressActions = false
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)!
}
o...