Show iPhone cut copy paste menu on UILabel

前端 未结 12 1258
半阙折子戏
半阙折子戏 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条回答
  •  隐瞒了意图╮
    2020-11-30 21:12

    Override the UITextField instance's textFieldShouldBeginEditing method, and set it to return NO in order to disable editing.

    Take a look at the UITextFieldDelegate protocol for more details.

提交回复
热议问题