The iPad programming guide says that the splitView\'s left pane is fixed to 320 points. But 320 pixels for my master view controller is too much. I would like to reduce it a
This code work for me:)
@interface UISplitViewController(myExt) - (void)setNewMasterSize:(float)size; @end
@implementation UISplitViewController(myExt) - (void)setNewMasterSize:(float)size { _masterColumnWidth = size; } @end
and use it on each operation with view (like rotation)