Show iPhone cut copy paste menu on UILabel

前端 未结 12 1257
半阙折子戏
半阙折子戏 2020-11-30 21:05
  1. Can we enable the cut copy paste menu for a UILabel as it is for a UITextField?

  2. If not, and I need to convert my UIL

12条回答
  •  Happy的楠姐
    2020-11-30 21:13

    If you have multiline text, you should use UITextView

    Set the delegate:

    func textView(_ textView: UITextView,
                  shouldChangeTextIn range: NSRange,
                  replacementText text: String) -> Bool {
        return false
    }
    

    And it should work magically :)

提交回复
热议问题