So I have one UIview in xib of mainClass via the interface builder. I have made an IBOutet of UIIView and connected with uiview in the interface builde. Now in the ViewDidLoad method I am adding a subview to the UIView I put in Interface builder like this
GameScreen *gameScreen = [[GameScreen alloc]initWithNibName:@"GameScreen" bundle:nil]; //the view beind added
[self.gameScreenView addSubview:[gameScreen view]]; //gameScreenView name of UIView
So here is what is happening - this is image from two diffrent builds (and haven't clicked on the button yet). In one build you can see the view loads up normally however on other it does (just shows the gray screen). Don't know why it is doing that. How can I fix this and why is it happening?
I previously posted a question over here but couldn't really get the problem across (its not an issue with animation as written in the question)
EDIT:
After playing around a bit with the code the UIView is not a issue its has to do something with the appdelegate and mainwindow.xib
thanks people for the help but it was just a silly mistake I had duplicate copies of xibs
GameScreena subclass of UIView? Why? – Matthew Frederick May 26 '12 at 20:20