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

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -