ios - How to change UISplitVIew's TableView Width -
i have ipad app in portrait mode due shorter width of detailview hiding content in according width wise. want shorter width of table view. idea?
simple , easy feature of ios 8.
in .h file:
@property(nonatomic, assign) cgfloat maximumprimarycolumnwidth ns_available_ios(8_0);
in .m file:
self.maximumprimarycolumnwidth = 100; self.splitviewcontroller.maximumprimarycolumnwidth = self.maximumprimarycolumnwidth;
Comments
Post a Comment