Show iPhone cut copy paste menu on UILabel

前端 未结 12 1248
半阙折子戏
半阙折子戏 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:15

    The sample project on github due to @zoul's answer is the way to go. At the time of this writing, that project does not actually put anything on the clipboard (pasteboard). here is how:

    Change @zoul's implementation of this method to:

    - (void) copy:(id)sender {
        UIPasteboard *pboard = [UIPasteboard generalPasteboard];
        pboard.string = self.text;  
    }
    

提交回复
热议问题