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 and give more space to detail view controller. Is it possible by anyway?

Edit: Link to the document which speaks about fixed width - http://developer.apple.com/iphone/library/documentation/General/Conceptual/iPadProgrammingGuide/UserInterface/UserInterface.html#//apple_ref/doc/uid/TP40009370-CH3-SW1

Thanks and Regards, Raj

link|improve this question

73% accept rate
feedback

4 Answers

up vote 8 down vote accepted

No.


There are two private properties

@property(access,nonatomic) CGFloat masterColumnWidth;
@property(access,nonatomic) CGFloat leftColumnWidth; // both are the same!

but being private mean they can't be used for AppStore apps.

link|improve this answer
1  
Thanks, but I am not going to use the private APIs, rather I would implement own split view controller . . . – Raj Jun 1 '10 at 11:45
feedback

Why not try Matt Gemmell's excellent MGSplitViewController? It's open source, and is available on GitHub.

Gregor, Sweden

link|improve this answer
Yeah Gregor, I ended up writing my own split view controller. – Raj Oct 26 '10 at 14:26
feedback

this code is work for me

[splitViewController setValue:[NSNumber numberWithFloat:200.0] forKey:@"_masterColumnWidth"];

link|improve this answer
I am afraid that we will be changing the private properties in this case. Better not do it. Who knows, Apple might decide to change its class hierarchy? – Raj Oct 26 '10 at 14:26
@Raj @pryiyanka, also you're assured rejection in the appstore. – Yar Jul 3 '11 at 15:35
Yes, and thats the reason why I have implemented own SplitViewController, Matt Gamell's splitViewController didnt exist back then but now you can use MGSplitViewController, its good. – Raj Jul 4 '11 at 10:51
feedback

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)

link|improve this answer
I know that privates can be modified using categories like this one, but this is the second time I try it and getting the same error:"_OBJC_IVAR_$_UISplitViewController._masterColumnWidth", referenced from: _OBJC_IVAR_$_UISplitViewController._masterColumnWidth$non_lazy_ptr in UISplitViewController+myExt.o (maybe you meant: _OBJC_IVAR_$_UISplitViewController._masterColumnWidth$non_lazy_ptr) Symbol(s) not found. Collect2: ld returned 1 exit status – nacho4d Aug 26 '10 at 8:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.