When I subclass UISplitViewController and set it’s viewControllers property everything is fine. However once I add this single line to my subclass the master view controller grows to the size of a detail view and overlaps my detail view.
@property (nonatomic,retain) MMMasterViewController* masterViewController;
Anyone know whats going on here?
So I changed the name of my property and it worked.
Why?
It most likely was overriding a private property of UISplitViewController.