星空网 > 软件开发 > 操作系统

iOS阶段学习第31天笔记(UINavigationBar)

iOS学习(UI)知识点整理

 

一、UINavigationBar 的介绍

1)概念:UINavigationBar 是用于定义导航栏按钮的一个类对象

2)在使用UINavigationBar之前必须先初始化导航栏 实例代码:

 1 //初始化导航栏 2 FirstViewController *firstVC = [[FirstViewController alloc] init]; 3 UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:firstVC]; 4 self.window.rootViewController = nav; 5  6 //appearance一定要在初始化之前使用 7 //修改默认的UINavigationBar的导航条背景颜色, 8 [[UINavigationBar appearance] setBarTintColor:[UIColor yellowColor]]; 9 10 //修改默认的导航栏文字即图标颜色11 [[UINavigationBar appearance] setTintColor:[UIColor blackColor]];12   13 //设置导航栏背景图片14 [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"icon"]  forBarMetrics:UIBarMetricsDefault];

  
3)setNavigationBarHidden 设置隐藏导航栏  例如:

1 [self.navigationController setNavigationBarHidden:YES];

 
4)title 设置导航栏标题  例如:

1 self.title = @“First View”;2 //注意:在一处做此设置后,后面的视图控制器如未作设置也会使用此标题

 
5)titleView 用于设置导航栏中间的视图 例如:

 1  UIView *navBarView = [[UIView alloc] init]; 2   navBarView.frame = CGRectMake(0, 0, 100, 30); 3   navBarView.backgroundColor = [UIColor clearColor]; 4   navBarView.layer.cornerRadius = 8.0f; 5   navBarView.clipsToBounds = YES; 6    7   UIButton *btn1 = [[UIButton alloc] init]; 8   btn1.frame = CGRectMake(0, 0, 50, 30); 9   btn1.backgroundColor = [UIColor blueColor];10   [btn1 setTitle:@"消息" forState:UIControlStateNormal];11   [btn1 addTarget:self action:@selector(btn1Tapped:) forControlEvents:UIControlEventTouchUpInside];12   btn1.tag = 1000;13   [navBarView addSubview:btn1];14   15   UIButton *btn2 = [[UIButton alloc] init];16   btn2.frame = CGRectMake(50, 0, 50, 30);17   btn2.backgroundColor = [UIColor blueColor];18   [btn2 setTitle:@"电话" forState:UIControlStateNormal];19   [btn2 addTarget:self action:@selector(btn1Tapped:) forControlEvents:UIControlEventTouchUpInside];20   btn2.tag = 1001;21   [navBarView addSubview:btn2];22 23   //在导航栏中的中间位置加入我们自定义的view,24   //程序会把我们设置的view自动居中25   self.navigationItem.titleView = navBarView;

 

6)UIBarButtonItem 导航栏上的按钮元素  常用的系统自带的Bar有

/*
* UIBarButtonSystemItemDone  按钮样式为文字Done、
* UIBarButtonSystemItemAdd 按钮样式为图片的加号
*UIBarButtonSystemItemCamera 按钮样式是图片的照相机
     
*UIBarButtonSystemItemFixedSpace 是一个占位符 ,可以设置width
*UIBarButtonSystemItemFlexibleSpace 是一个占位符,固定宽度,导航栏上单独一个按钮
*/

例如:

1 //系统自带照相机按钮2 UIBarButtonItem *button1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera
target:self action:@selector(barButtonTapped:)];3 4 //占位符按钮5 UIBarButtonItem *button2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace
target:self action:@selector(barButtonTapped:)];

 

7)rightBarButtonItem 设置导航栏右侧单个按钮 例如:

1 self.navigationItem.rightBarButtonItem = button1;

 

8)rightBarButtonItems 设置导航栏右侧多个按钮 例如:

1 self.navigationItem.rightBarButtonItems = @[button2, button1];

 

9)edgesForExtendedLayout 设置view的坐标都是从导航栏左下点开始计算 防止导航栏遮挡内容区域
例如:

1 self.edgesForExtendedLayout = UIRectEdgeNone;

 

10)initWithTitle 使用文字作为导航栏按钮 例如:

1 UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"返回" style:UIBarButtonItemStylePlain
target:self action:@selector(back)];

 

11)initWithImage 使用图片作为导航栏按钮 例如:

1 UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"st_logout"] 
style:UIBarButtonItemStylePlain target:self action:@selector(back)];2 self.navigationItem.leftBarButtonItem = barButtonItem;

 
12)setToolbarHidden 设置导航栏显示与隐藏 例如:

1 [self.navigationController setToolbarHidden:NO];

 

 
 



原标题:iOS阶段学习第31天笔记(UINavigationBar)

关键词:IOS

IOS
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

亚马逊代缴VAT税款是否可以申请退税?:https://www.kjdsnews.com/a/1352991.html
亚马逊代缴VAT税款可以申请退税吗?:https://www.kjdsnews.com/a/1352992.html
亚马逊代收代缴VAT需要什么准备?:https://www.kjdsnews.com/a/1352993.html
亚马逊代收代缴VAT所需要的步骤:https://www.kjdsnews.com/a/1352994.html
亚马逊代收代缴VAT所需要的一切:https://www.kjdsnews.com/a/1352995.html
亚马逊中东站是否需要VAT税号?:https://www.kjdsnews.com/a/1352996.html
​TikTok发生了什么?美区增长首次停滞,准入管理力度加大:https://www.kjdsnews.com/a/1836407.html
2024年如何找到在TikTok上发帖的最佳时间:https://www.kjdsnews.com/a/1836408.html
相关文章
我的浏览记录
最新相关资讯
海外公司注册 | 跨境电商服务平台 | 深圳旅行社 | 东南亚物流