Stuck with IBOutlet file?

Set the property of the objects in header file as property(nonatomic, retain) IBOutlet UIButton* newGameButton.

Set the property of the objects in header file as @property(nonatomic, retain) IBOutlet UIButton* newGameButton; . . .

And in . M file synthesis them using @synthesis newGameButton; do this for all the objects that you have declared and then connect them in the IB.

So far so good. No more errors. But now when I build the game the iphone simulator starts the game, shows the Main menu, but no buttons!

These are my changes: Header file: @property(nonatomic,retain) IBOutlet UIButton* newGameButton; @property(nonatomic,retain) IBOutlet UIButton* statsButton; @property(nonatomic,retain) IBOutlet UIButton* settingsButton; . M file no changes cause synthesis is syntehzise. And I've connected the Oultets to the buttons in IB – Freel4tte Jan 10 at 12:25 can you update your code in the original post above?

– Axel Jan 10 at 13:40.

I mean, if you are working with the interface builder check out that in your main window xib, the viewController object you are using corresponds with your MainMenuViewController class.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions