UISplitViewController help
Hopefully these forums cover iPad development as well...
When you create a new project with the SplitViewController application template, the view is added to the window like this:
[window addSubview:splitViewController.view];
I am trying to figure out / understand; what does the view property of a splitViewController actually return? It seems to inherit that property from the ViewController class; but with a SplitViewController it doesn't make much sense, because the SplitViewController contains 2 other ViewControllers; each which has its own view. So what view is returned by the SplitViewController subclass?
Thanks.
|