0
votes

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.

1
I tried to implement this "hack" stackoverflow.com/questions/19056601/… but it didn't work (besides, it's a lot of repetitive code). I tried to find a solution all day, but couldn't get to any. I guess there's no way to achieve this. Thanks!Marilyn García

1 Answers

3
votes

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.