// 隐藏navigationBar 没有卡顿 [self.navigationController setNavigationBarHidden:YES animated:YES]; // 隐藏navigationBar 切换页面时,有卡顿// self.navigationController. ...
分类:
其他好文 时间:
2017-04-12 16:52:26
阅读次数:
134
#import <UIKit/UIKit.h> @interface RCDNavigationViewController : UINavigationController<UIGestureRecognizerDelegate,UINavigationControllerDelegate> @e ...
分类:
其他好文 时间:
2017-04-01 15:39:51
阅读次数:
233
1.关于导航栏左右两边的按钮 2.修改标题 //设置导航控制器标题的颜色和字体大小等 NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys: [UIColor whiteColor],NSForegroundCol ...
分类:
移动开发 时间:
2017-03-27 10:46:18
阅读次数:
496
先说简单的吧,UINavigationController代码创建非常简单,仅需一行代码 然后是重头戏,UITabBarController,我刚开始接触这个控制器是在stroryboard里面直接拖,非常简单方便,但是后来在实际项目里面这种方式是不适合的,需要用代码来创建,我的需求是做一个引导页, ...
分类:
移动开发 时间:
2017-03-15 10:34:27
阅读次数:
688
@interface welcomeLabel : UILabel +(void)setTopTipLabelWithFrame:(CGRect)frame name:(NSString *)name andNavController:(UINavigationController *)nav; @ ...
分类:
其他好文 时间:
2017-03-10 16:18:44
阅读次数:
124
1、背景:2014年4月份第一次接触IOS端开发,为某银行开发一款金融app。在开发的最后阶段,加入了需要从任意一个页面直接返回主页的功能。悲催的是,当时没有使用UINavigationController进行导航管理,而是使用了IOS中的模态跳转方式(presentViewController/dismissViewControlle..
分类:
移动开发 时间:
2017-02-14 14:13:05
阅读次数:
239
知识点: 1.UINavigationController 2.UINavigationItem 3.UINavigationBar 4.UINavigationController视图切换 UINavigationController 1.什么是导航控制器 作用:管理视图控制器 2.UINavig ...
分类:
移动开发 时间:
2017-01-19 23:13:06
阅读次数:
400
1 // 取消导航栏下面的分隔线 2 navigationBar.setBackgroundImage(UIImage(), for: .default) 3 navigationBar.shadowImage = UIImage() 4 5 // 注意:如果设置了空的背景和阴影图片,要设置此属性为... ...
分类:
其他好文 时间:
2017-01-19 12:08:30
阅读次数:
213
一、通过导航控制器UINavigationController跳转 二、直接跳转 ...
分类:
移动开发 时间:
2017-01-17 17:43:05
阅读次数:
190
1: navigationController 的返回按钮自定义 SecondViewController *secondVC = [SecondViewController new]; //更改UINavigationController的返回按钮 UIBarButtonItem *backBut ...
分类:
其他好文 时间:
2017-01-06 10:25:48
阅读次数:
151