How to disable UITextField editing but still accept touch?

后端 未结 15 2339
误落风尘
误落风尘 2020-11-29 19:55

I\'m making a UITextField that has a UIPickerView as inputView. Its all good, except that I can edit by copy, paste, cut and select te

15条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-29 20:23

    In Swift:

    func textFieldShouldBeginEditing(textField: UITextField) -> Bool {
        questionField.resignFirstResponder();
        // Additional code here
        return false
    }
    

提交回复
热议问题