IOS之導航控制器,ios導航
UINavigationController是用於構建分層應用程式的主要工具,主要採用棧形式來實現視圖。任何類型的視圖控制器都可放入棧中。在設計導航控制器時需要指定根視圖即使用者看到的第一個視圖。根視圖控制器是被導航控制器推入到棧中的第一個視圖控制器。當使用者查看下一個試圖時,棧中將加入一個新的視圖控制器,它所控制的視圖將展示給使用者。我們可以通過導覽按鈕來操作分層的應用程式,用它來控制視圖的推入或推出。
1、把子控制器添加到導航控制器中常用的方法
//建立視圖控制器 JRViewController * vc=[[JRViewController alloc] init]; //建立導航控制器,並且將上面的控制器作為導航控制器的根控制器 UINavigationController * naVC=[[UINavigationController alloc] initWithRootViewController:vc]; //將當前的導航控制器設定視窗的根視圖控制器self.window.rootViewController=naVC;
2、這樣我們就把JRViewController作為了當前置航控制器的根控制器,下面我們進入到JRViewController,並且添加一個標題和按鈕代碼如下
//設定背景 self.view.backgroundColor=[UIColor redColor]; //設定標題 self.title=@"精品"; //添加按鈕 UIButton * button=[[UIButton alloc] initWithFrame:CGRectMake(0, 0, 100, 45)]; button.backgroundColor=[UIColor blackColor]; [button setTitle:@"push" forState:UIControlStateNormal]; button.center=self.view.center; [button addTarget:self action:@selector(pushVCNew) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:button];
如下:
3、下面我們就進行視圖控制器之間的跳轉
導航控制器管理檢視控制器主要採取壓棧和出棧的方式,下面我們一起來感受一下如何切換,上面添加了按鈕我們增加了點擊事件,下面我們重新一下這個點擊事件觸發的方法:
- (void) pushVCNew{ //初始化第二個控制器 SecondViewController * sec=[[SecondViewController alloc] init]; //切換到另一個視圖控制器 [self.navigationController pushViewController:sec animated:YES]; }
如下:
壓棧進入後響應的就有出棧,如何進行出棧返回呢,我們重寫一下第二個控制器的返回方法,調用控制器的popViewControllerAnimated方法即可
- (void) popVC{ [self.navigationController popViewControllerAnimated:YES];}
5、導覽按鈕
//1 構造方法 UIBarButtonItem * item1=[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"bt1"] style:UIBarButtonItemStylePlain target:self action:@selector(leftClick)]; //2 自訂視圖 UIButton * button=[[UIButton alloc] initWithFrame:CGRectMake(100, 100, 50, 40)]; button.backgroundColor=[UIColor redColor]; [button setTitle:@"hello" forState:UIControlStateNormal]; UIBarButtonItem * item2=[[UIBarButtonItem alloc] initWithCustomView:button]; //3 添加到當前navigationItem self.navigationItem.leftBarButtonItem=item2; self.navigationItem.rightBarButtonItem=item1; //4 增加標題 UILabel * label=[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 40)]; label.text=@"導航控制器"; label.textColor=[UIColor redColor];self.navigationItem.titleView=label;
如下
6、ToolBar工具條,每個導航控制器都有一個工具條,預設為隱藏狀態,下面我們將工具條開啟並使用它。
//開啟toolbar self.navigationController.toolbarHidden=NO; //定義ToolBar增加按鈕 UIBarButtonItem * item1=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(pushVC)]; UIBarButtonItem * item2=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(pushVC)]; UIBarButtonItem * item3=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:@selector(pushVC)]; UIBarButtonItem * item4=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemOrganize target:self action:@selector(pushVC)]; UIBarButtonItem * item5=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(pushVC)]; UIBarButtonItem * item6=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemStop target:self action:@selector(pushVC)]; UIBarButtonItem * item7=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:@selector(pushVC)]; UIBarButtonItem * item8=[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:self action:@selector(pushVC)]; item8.width=20; //將按鈕添加到工具條 self.toolbarItems=@[item1,item8,item2,item8,item3,item8,item4,item7,item5,item8,item6];
如下:
作者:傑瑞教育
出處:http://www.cnblogs.com/jerehedu/
著作權聲明:本文著作權歸煙台傑瑞教育科技有限公司和部落格園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文串連,否則保留追究法律責任的權利。
技術諮詢: