版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、iOS应用中使用Toolbar工具栏方式切换视图的方法详解这篇文章主要介绍了iOS应用中使用Toolbar工具栏方式切换视图的方法,文中讲解了UIToolbar的相关编写以及使用xib方式创建可切换视图程序的例子,需要的朋友可以参考下关于UIToolbarToolBar工具栏是视图View的属性,可以在工具栏上添加工具栏按钮Bar Button Item(可以是自定义的Custom、也可以是系统自带的BarButtonSystemItem ),视图控制器可以通过工具栏项对视图中内容进行操作。注意事项:在导航栏控制器中会有一个UIToolBar实例,但默认是隐藏的,如果需要显示,需要通过这个方法
2、将其打开:在这里需要注意的是,与UINavigationBar类似,导航控制器拥有且只拥有一个UIToolBar实例,但UIToolBar拥有的UIBarButtonItem实例,是由视图控制器进行管理的,如下所示:工具栏风格:123456typedef NS_ENUM(NSInteger, UIBarStyle) UIBarStyleDefault = 0, /默认风格,蓝色文字UIBarStyleBlack = 1, /黑色背景,褐色文字UIBarStyleBlackOpaque = 1, / 纯黑色背景,白色文字UIBarStyleBlackTranslucent = 2, / 透明黑色
3、背景,白色文字;属性:12345property(nonatomic) UIBarStyle barStyle; /工具栏风格,默认为蓝色property(nonatomic,copy) NSArray *items; /工具栏中的按钮单元,UIBarButtonItemproperty(nonatomic,assign,getter=isTranslucent) BOOL translucent /是否透明property(nonatomic,retain) UIColor *tintColor; /按钮颜色property(nonatomic,retain) UIColor *barTin
4、tColor; /工具栏颜色方法:设置工具栏中的按钮单元1- (void)setItems:(NSArray *)items animated:(BOOL)animated; 设置工具栏的背景图像复制代码 代码如下:- (void)setBackgroundImage:(UIImage *)backgroundImage forToolbarPosition:(UIBarPosition)topOrBottom barMetrics:(UIBarMetrics)barMetrics;获取工具栏的背景图像复制代码 代码如下:- (UIImage *)backgroundImageForToolb
5、arPosition:(UIBarPosition)topOrBottom barMetrics:(UIBarMetrics)barMetrics;设置工具栏的阴影图像复制代码 代码如下:- (void)setShadowImage:(UIImage *)shadowImage forToolbarPosition:(UIBarPosition)topOrBottom;获取工具栏的阴影图像复制代码 代码如下:- (UIImage *)shadowImageForToolbarPosition:(UIBarPosition)topOrBottom ;Tool Bar方式切换视图1、创建工程:运行
6、Xcode,新建一个Empty Application,名称为MultiView,其他设置如下图:2、创建3个View Controller:依次选择File New New File,打开如下窗口:找到UIViewController subclass并单击Next,打开下面的窗口:输入名称RootViewController,并且保证Subclass of选择UIViewController,下面的两个选框都不选;按照同样的步骤新建两个View Controller,名称分别是FirstViewController和SecondViewController。建好后,在Project Nav
7、igation中显示文件如下:3、为三个View Controller创建.xib文件:依次选择File New New File,打开如下窗口:在左边选User Interface,右边选View,单击Next,在新窗口中的Device Family中选择iPhone,单击Next,打开如下窗口:输入名称RootView,单击Create,创建了一个.xib文件。用同样的方法再创建两个.xib,名称分别是FirstView和SecondView。4、修改App Delegate:4.1 单击AppDelegate.h,在其中添加代码,在interface之前添加class RootViewC
8、ontroller;在end之前添加property (strong, nonatomic) RootViewController *rootViewController;添加之后的代码如下:123456#import <UIKit/UIKit.h>class RootViewController;interface AppDelegate : UIResponder <UIApplicationDelegate>property (strong, nonatomic) UIWindow *window;property (strong, nonatomic) Root
9、ViewController *rootViewController;end4.2 单击AppDelegate.m,修改其代码。在implementation之前添加#import "RootViewController.h",在implementation之后添加synthesize rootViewController;然后修改didFinishLaunchingWithOptions方法如下:1234567891011121314- (BOOL)application:(UIApplication *)application didFinishLaunchingWit
10、hOptions:(NSDictionary *)launchOptionsself.window = UIWindow alloc initWithFrame:UIScreen mainScreen bounds;/ Override point for customization after application launch.self.rootViewController = RootViewController alloc initWithNibName:"RootView" bundle:nil; UIView *rootView = self.rootView
11、Controller.view; CGRect rootViewFrame = rootView.frame; rootViewFrame.origin.y += UIApplication sharedApplication.statusBarFrame.size.height; rootView.frame = rootViewFrame; self.window addSubview:rootView; self.window.backgroundColor = UIColor whiteColor;self.window makeKeyAndVisible;return YES; 复制
12、代码 代码如下:self.rootViewController = RootViewController alloc initWithNibName:"RootView" bundle:nil; 这行代码用于从RootView.xib文件中初始化rootViewController,注意initWithNibName:"RootView"中不要后缀名.xib 复制代码 代码如下:rootViewFrame.origin.y += UIApplication sharedApplication.statusBarFrame.size.height; 使得R
13、ootViewController的视图不会被状态栏挡住5、修改RootViewController.h:单击RootViewController.h,在其中添加两个属性和一个方法,如下:12345678#import <UIKit/UIKit.h>class FirstViewController;class SecondViewController;interface RootViewController : UIViewControllerproperty (strong, nonatomic) FirstViewController *firstViewController
14、;property (strong, nonatomic) SecondViewController *secondViewController;- (IBAction)switchViews:(id)sender;end6、打开RootView.xib,在坐边选择File's Owner,在右边打开Identity Inspector,在Class下拉菜单选择RootViewController:这样,我们就可以从RootView.xib文件向RootViewController创建Outlet和Action了。7、为RootView.xib添加工具栏:打开RootView.xib,
15、拖一个Tool Bar到视图上,双击Tool Bar上的按钮,修改其名称为Switch Views:8、添加Action映射:选中Switch Views按钮,按住Control,拖到File's Owner,松开鼠标后选择switchViews方法:9、选择File's Owner,按住Control键,拖到View,松开鼠标,选择view:10、修改RootViewController.m:打开RootViewController.m文件,在implementation之前添加代码:12#import "FirstViewController.h"#im
16、port "SecondViewController.h"在implementation之后添加代码:12synthesize firstViewController;synthesize secondViewController;接下来修改viewDidLoad方法,这个方法默认是被注释掉的,先去掉其周围的注释符,然后修改其代码如下:123456- (void)viewDidLoadself.firstViewController = FirstViewController alloc initWithNibName:"FirstView" bundl
17、e:nil;self.view insertSubview: firstViewController.view atIndex:0;super viewDidLoad;添加switchViews方法:12345678910111213141516- (IBAction)switchViews:(id)sender if (self.secondViewController.view.superview = nil) if (self.secondViewController = nil) self.secondViewController = SecondViewController allo
18、c initWithNibName:"SecondView" bundle:nil; firstViewController.view removeFromSuperview; self.view insertSubview:self.secondViewController.view atIndex:0; else if (self.firstViewController = nil) self.firstViewController = FirstViewController alloc initWithNibName:"FirstView" bun
19、dle:nil; secondViewController.view removeFromSuperview; self.view insertSubview:self.firstViewController.view atIndex:0; 修改didReceiveMemoryWarning方法:123456789- (void)didReceiveMemoryWarningsuper didReceiveMemoryWarning;if (self.firstViewCsuperview = nil) self.firstViewController = nil; else self.sec
20、ondViewController = nil; 11、打开FirstView.xib文件,选择左边的File's Owner,然后在Identity Inspector中选择Class为FirstViewController;然后按住Control键从File's Owner图标拖到View,在弹出的菜单选择view。为SecondView.xib进行同样的操作,不过Class选择为SecondViewController。12、打开FirstView.xib文件,选择View,打开Attribute Inspector,进行如下设置:对SecondView.xib进行同样设
21、置,不过背景颜色设成红色。13、此时运行程序,你会看见刚启动的时候,程序显示的绿色背景,轻触Switch Views按钮后,背景变成了红色。不断轻触按钮,背景不断变换。14、添加切换背景的动画效果:打开RootViewController.m,修改其中的switchViews方法如下:123456789101112131415161718192021- (IBAction)switchViews:(id)sender UIView beginAnimations:"View Flip" context:nil; UIView setAnimationDuration:1.2
22、5; UIView setAnimationCurve:UIViewAnimationCurveEaseInOut;if (self.secondViewController.view.superview = nil) if (self.secondViewController = nil) self.secondViewController = SecondViewController alloc initWithNibName:"SecondView" bundle:nil; UIView setAnimationTransition: UIViewAnimationTran
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年标准消防中介服务协议模板版B版
- 2024-2030年中国孕妇营养保健品行业营销模式及发展竞争力分析报告
- 2024-2030年中国大型购物中心行业管理经营模式及投资规划分析报告
- 2024-2030年中国单宁酸行业产销需求与投资效益预测报告
- 2024年版押金协议附加条款一
- 湄洲湾职业技术学院《轻化工程AUTOCAD》2023-2024学年第一学期期末试卷
- 眉山职业技术学院《商业银行模拟实训》2023-2024学年第一学期期末试卷
- 茅台学院《知识产权法导论》2023-2024学年第一学期期末试卷
- 2024年版租赁合同租金调整机制分析
- 茅台学院《黑白摄影》2023-2024学年第一学期期末试卷
- 顶尖课课练(学生版)数学七年级上整理版2020.11.30
- 高大模板工程安全技术交底
- 山景系列产品包发布1-入门和选型ap8248a2数据手册prelimiary
- 催化材料智慧树知到答案章节测试2023年南开大学
- 《单片机原理和应用》课程标准
- 灌注桩接桩规范
- 云南省2023年7月普通高中学业水平考试物理试卷(含答案)
- 交管12123学法减分题库大全(附答案)
- YY/T 1181-2021免疫组织化学试剂盒
- GB/T 16991-1997纺织品色牢度试验高温耐光色牢度:氙弧
- 国外发票模板invoice
评论
0/150
提交评论