简体   繁体   中英

How to change UISplitVIew's TableView Width

I have an ipad app in portrait mode but due to shorter width of DetailView it is hiding content in it according to width wise. SO i want to shorter the width of table view. Any Idea?

Simple and easy feature of IOS 8.

In your .h file:

@property(nonatomic, assign) CGFloat maximumPrimaryColumnWidth NS_AVAILABLE_IOS(8_0);

In your .m file:

 self.maximumPrimaryColumnWidth = 100;
 self.splitViewController.maximumPrimaryColumnWidth = self.maximumPrimaryColumnWidth;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM