Skip to content

Instantly share code, notes, and snippets.

@tlrobinson
Created December 10, 2008 08:20
Show Gist options
  • Save tlrobinson/34280 to your computer and use it in GitHub Desktop.
Save tlrobinson/34280 to your computer and use it in GitHub Desktop.
- (TiAppMenu *)createAppMenu:(NSString*)label
{
//TODO: review with marshall - probably need a getUserMenu
NSMenu *appMenu = [[[NSApp mainMenu] itemWithTitle:label] submenu];
if (appMenu == nil)
{
//FIXME
}
else
{
return [[TiAppMenu alloc]initWithMenu:appMenu];
}
return nil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment