在开发过程中用collectionView集合视图的时候,用navgationController跳转会出现导航栏掩盖部分内容现象,这时候需要在viewDidLoad里面填写self.edgesForExtendedLayout = UIRectEdgeNone;然后会发现下面也不能全部显示,总是需...
分类:
其他好文 时间:
2015-11-14 12:20:56
阅读次数:
271
在页面进行跳转的过程中,我们往往使用两种方式 self.navigationViewcontroller push... 、self presentViewController... 还有就是配合storyboard方式。有三种:1、NavgationController本身可以作为普通ViewCo...
分类:
其他好文 时间:
2015-11-03 17:48:15
阅读次数:
119
NSArray *segmentedArray = [NSArray arrayWithObjects:@"患者基本信息",@"患者信息",nil]; UISegmentedControl *segmentedControl = [[UISegmentedControl alloc]initWit....
分类:
其他好文 时间:
2015-08-19 22:34:06
阅读次数:
102
1、NavgationController pop 回来不进入viewdisload,利用原来加载的视图
不是啊,他pop回来的时候不进viewdidload
直接进去viewwillApper这个方法
2、push 过去后,隐藏UIToolBar
RushViewController *rushViewControler=[[RushViewController
allo...
分类:
其他好文 时间:
2015-08-17 19:40:12
阅读次数:
120
//此方法只会调用一次,设置UIBarButtonItem样式+(void)initialize{ //通过appearance对象能修改整个项目中所有UIBarButtonItem的样式 UIBarButtonItem *appearance = [UIBarButtonItem ap...
分类:
其他好文 时间:
2015-02-28 16:10:48
阅读次数:
100
最近要实现一个 连续 pop 两次 又 Push 一个新的 MVC 的需求,所以把经历写出来分享一下。NavgationController 是 iOS 中最常用的控制器了,先看官网文档:TheUINavigationControllerclass implements a specialized ...
分类:
其他好文 时间:
2014-08-06 18:12:31
阅读次数:
344