Click here to Skip to main content
15,890,557 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
I have this menu item that I want to connect to my xib file and was wondering how to do it? I thought this might be like regular Xcode but it is nothing like the way I thought it would be. Really appreciate it if you help me.



C#
CCMenuItemImage *gamecenter = [CCMenuItemImage
                                itemFromNormalImage:@"gamecenter.png"
                                selectedImage:@"gamecenter.png"
                                target:self
                                selector:@selector(gamecenter:)];

    option1.position =ccp(50,-150);

    CCMenu *menu6 = [CCMenu menuWithItems: option2, nil];
    [menuLayer addChild: menu6];

    - (void) option2: (id) sender
{
    [[CCDirector sharedDirector] replaceScene:[GameCenterViewController scene]];


 }



I know you probably don't use GameCenterViewController (the xib file) to replace scene. But just putting it up to kind of show what I am trying to do.

So i just need to find out how to switch to GameCenterViewController.xib
Posted
Updated 20-Jul-12 18:56pm
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900