What I want is the normal UISplitViewController, except it’s moved down about 100px down so that an image can be at the top.
I tried to put the following in the splitviewcontroller init:
[self.view setFrame:CGRectMake(0, 140, self.view.frame.size.width, self.view.frame.size.height)];
but that didn’t do anything.
Can anyone help?
UISplitViewController is built to take all the screen real estate and not really let you do any sort of custom design, even something as trivial as modifying it’s frame.
I suggest you take a look at MGSplitViewController if you want to a customizable UISplitViewController.
Also don’t forget to modify the frame’s height, so part of what your drawing isn’t off screen (ex. CGRectMake(0, 140, self.view.frame.size.width, self.view.frame.size.height*-140*)];).