Marilyn García
Marilyn García

Reputation: 115

Append custom UIMenuItems at the beginning of UIMenuController iOS

I have implemented a custom UIMenuController with two aditional options besides the ones that are set by default in iOS (cut, copy, look up, share). I want to keep these standard options, but I want them to appear after my two custom items, does anyone know how to achieve this in an efficient way? Thanks in advance.

Upvotes: 0

Views: 659

Answers (1)

Son of a Beach
Son of a Beach

Reputation: 1779

The UIMenuController documentation says:

Custom items appear in the menu after any system menu items.

So there is probably no approved way around that. It appears to be baked in functionality.

Upvotes: 3

Related Questions