Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create a custom UIMenuController and display it in my view. Here's my code:

UIMenuController *menuController = [UIMenuController sharedMenuController];
    UIMenuItem *listMenuItem = [[UIMenuItem alloc] initWithTitle:@"List" action:@selector(addList:)];

    [menuController setMenuItems:[NSArray arrayWithObject:listMenuItem]];
    [menuController setTargetRect:CGRectMake(50.0, 50.0, 0, 0) inView:self.view];
    [menuController setMenuVisible:YES animated:YES];

    [listMenuItem release];

There are no errors or exceptions, but the menu controller just doesn't show up.

share|improve this question

4 Answers

up vote 48 down vote accepted

You need to do three things:

  1. You need to call -becomeFirstResponder on the view or view controller.
  2. Your view or view controller needs to implement -canBecomeFirstResponder (returning YES).
  3. Optionally, your view or view controller can implement -canPerformAction:action withSender:sender to show/hide menu items on an individual basis.
share|improve this answer
2  
Helpful, very helpful. – not really Jake Sep 6 '11 at 15:03
This works really well in MonoTouch too--only things to be aware of is that the CanBecomeFirstResponder is a property override, and that you must assign a UIMenuItem[] array to the UIMenuController.MenuItems property. – PaulJ May 10 '12 at 8:45
Didn't work when I called becomeFirstResponder on the view. Calling it on the controller worked fine. – Dan Abramov Apr 15 at 17:02

UIMenuController is visible on any view only if the view is first responder and

- (BOOL)canPerformAction method returns YES

Hence if your menu controller is to be shown on button click, the first line in the button action should be [self becomeFirstResponder]. NOTE: here self is the view which will present the menus.

If your menus are to be shown on long press gesture, then add longPressGesture to the UIView and in the longpress event before writing

[menuController setTargetRect:CGRectMake(50.0, 50.0, 0, 0) inView:self.view];
[menuController setMenuVisible:YES animated:YES];

write [self becomeFirstResponder];

Then follow the steps mentioned by OZ.

share|improve this answer
I tried this but its not working for me. As comment have limit I have created another question stackoverflow.com/questions/16054050/… – Jitesh Apr 17 at 7:33

Just in case anyone is having this issue specifically (and randomly) with iOS6: you might want to look at this SO related to having Speak Selection enabled on the device (Settings -> General -> Accessibility -> Speak Selection: On). A small number of my users were not able to see the custom UIMenuItems and this was the cause.

share|improve this answer

maybe because CGRectMake(50.0, 50.0, 0, 0) creates a CGRect with width = 0 and height = 0?

cheers, anka

share|improve this answer
Even if I set the width/height to something like 100, still doesn't show up. – indragie Jun 24 '10 at 19:22
Ok, you can try to add the method (BOOL)canPerformAction:(SEL)action withSender:(id)sender and return YES. – anka Jun 24 '10 at 19:37
Still doesn't work. – indragie Jun 24 '10 at 19:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.