0

When I am doing long touch on text in UITextView or in UITextField, a bubble appears with options "Cut, Copy, Paste":

enter image description here

Can I customize how it looks? For instance, can I change its background color (which is black by default) or text color (which is white by default)?

Nick
  • 3,205
  • 9
  • 57
  • 108

1 Answers1

1

An alternative can be QBPopupMenu as it's not possible with the public API.

You could customize it to appear as you like. You could then catch the system menu about to appear by listening to UIMenuControllerWillShowMenuNotification notifications, hide it, and display the custom one instead.

Maulik Bhuptani
  • 597
  • 3
  • 14