In following the exercises of a popular book for iOS Development I came across a line of code I don't understand and can't find an explanation for, so I thought I'd post on this community for insight...
In a UIViewController the view is initialized like this:
-(void)loadView {
[self setView:[[SomeView alloc] initWithFrame:CGRectZero]];
}
On the application delegate the controller is set as the rootViewController like this:
SomeController *sc = [[TouchViewController alloc] init];
[[self window] setRootViewController:sc];
How is it that the view is set to a zero rect and yet it comes up fullscreen when the application runs?
My guess is that the rootViewController's view is set to the window's bounds by the window... but I have not been able to confirm this anywhere...
Anyone?