porting an app to iPad: alternatives for a context-menu? UI advice please
Considering porting/rewriting an app for the iPad and need some UI advice. On the iPad is there a way to pop a context-menu up from a text field without the text field losing focus? If not, what is the closest thing in the UI to this sort of functionality?
In 3.2, the menuItems
of the UIMenuController can be customized, so you could just add your items into that array.
If you don't need the text field to be interactive than the menu appears, you could also use a pop-over or action sheet for more flexibility. Make that text field -becomeFirstResponder
after that context menu is dismissed.
精彩评论