Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7690177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T20:20:09+00:00 2026-05-31T20:20:09+00:00

With the following setup …. MyUIMenuItem *someAction = [[MyUIMenuItem alloc]initWithTitle : @Something action :

  • 0

With the following setup

....
MyUIMenuItem *someAction  = [[MyUIMenuItem alloc]initWithTitle : @"Something"  action : @selector(menuItemSelected:)];
MyUIMenuItem *someAction2 = [[MyUIMenuItem alloc]initWithTitle : @"Something2" action : @selector(menuItemSelected:)];
....

- (IBAction) menuItemSelected : (id) sender
{
    UIMenuController *mmi = (UIMenuController*) sender;
}

How to figure out which menu item was selected.

And don’t say that you need to have two methods… Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T20:20:11+00:00Added an answer on May 31, 2026 at 8:20 pm

    Okay, I’ve solved this one. The solution isn’t pretty, and the better option is “Apple fixes the problem”, but this at least works.

    First of all, prefix your UIMenuItem action selectors with “magic_“. And don’t make corresponding methods. (If you can do that, then you don’t need this solution anyway).

    I’m building my UIMenuItems thus:

    NSArray *buttons = [NSArray arrayWithObjects:@"some", @"random", @"stuff", nil];
    NSMutableArray *menuItems = [NSMutableArray array];
    for (NSString *buttonText in buttons) {
        NSString *sel = [NSString stringWithFormat:@"magic_%@", buttonText];
        [menuItems addObject:[[UIMenuItem alloc] 
                             initWithTitle:buttonText
                             action:NSSelectorFromString(sel)]];
    }
    [UIMenuController sharedMenuController].menuItems = menuItems;
    

    Now your class that catches the button tap messages needs a few additions. (In my case the class is a subclass of UITextField. Yours might be something else.)

    First up, the method that we’ve all been wanting to have but that didn’t exist:

    - (void)tappedMenuItem:(NSString *)buttonText {
        NSLog(@"They tapped '%@'", buttonText);
    }
    

    Then the methods that make it possible:

    - (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
        NSString *sel = NSStringFromSelector(action);
        NSRange match = [sel rangeOfString:@"magic_"];
        if (match.location == 0) {
            return YES;
        }
        return NO;
    }
    
    - (NSMethodSignature *)methodSignatureForSelector:(SEL)sel {
        if ([super methodSignatureForSelector:sel]) {
            return [super methodSignatureForSelector:sel];
        }
        return [super methodSignatureForSelector:@selector(tappedMenuItem:)];
    }
    
    - (void)forwardInvocation:(NSInvocation *)invocation {
        NSString *sel = NSStringFromSelector([invocation selector]);
        NSRange match = [sel rangeOfString:@"magic_"];
        if (match.location == 0) {
            [self tappedMenuItem:[sel substringFromIndex:6]];
        } else {
            [super forwardInvocation:invocation];
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following setup webview = [[UIWebView alloc] initWithFrame:[UIScreen mainScreen].bounds]; Occasionally I issue
Consider the following setup: A windows PC with a LAN interface and a WiFi
I have the following setup: Code on my local machine (OS X) shared as
I have a following setup: App - Magnolia site running under Tomcat 6.0.16 ISAPI
I have the following setup, and I need to know how to persist state.
I'm using the following setup: public MySQLProcessWriter(Connection con) throws SQLException { String returnNames[] =
I have the following setup, and the empty view text doesn't show up... protected
I have the following setup: eclipse a standard Java project (A) an eclipse plugin
I have this following setup, a textarea named with some data in it that
I have following setup, but when I put 1024 and replace all 512 with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.