So I have done several apps where I have done something like this in the appDidFinishLaunching: method
[self.window addSubview:someView.view];
[self.window makeKeyAndVisible];
This has worked in the past, but for some reason in my most recent endeavor, when I add the subview, there is a space at the bottom, until I rotate the device. The space looks like it is the size of the info bar at the top. My guess is the frame is not updating based on the device orientation and location of the info bar. I am not manipulating the view in any other way other then adding it as a subview. Anyone have any idea what might be going on?? Thanks..!