Dismiss iOS context menu
I have added another option to the default context menu. Copy / Send When the Send option is selected it runs a JavaScript. however the context menu remains visible. How can I disable it programmatic开发者_开发技巧ally?
Just use method of UIMenuController
:
[menu setMenuVisible:NO animated:YES];
Implement it in SendMenuItemTouched method. Did you try this?
精彩评论