zoukankan      html  css  js  c++  java
  • UINavigationController详解三(转)ToolBar

    原文出自:http://blog.csdn.net/totogo2010/article/details/7682641,特别感谢。

    1、显示Toolbar 

    在RootViewController.m的- (void)viewDidLoad方法中添加代码,这样Toobar就显示出来了。

     

    [cpp] view plaincopy
     
    1. [self.navigationController  setToolbarHidden:NO animated:YES];  


    2、在ToolBar上添加UIBarButtonItem

    新建几个UIBarButtonItem,然后以数组的形式添加到Toolbar中

     

    [cpp] view plaincopy
     
    1. UIBarButtonItem *one = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:nil action:nil];  
    2.     UIBarButtonItem *two = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:nil action:nil];  
    3.     UIBarButtonItem *three = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:nil action:nil];  
    4.     UIBarButtonItem *four = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:nil action:nil];  
    5.     UIBarButtonItem *flexItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];  
    6.     [self setToolbarItems:[NSArray arrayWithObjects:flexItem, one, flexItem, two, flexItem, three, flexItem, four, flexItem, nil]];  


    效果:

     

    注意:用   [self.navigationController.toolbar setItems:(NSArray *) animated:<#(BOOL)#>]这个方法添加item是不起效果的。下面我动态自己添加Toolbar时,这个才起效果。

     

    3、动态添加Toolbar

    我们在SecondView添加动态的Toolbar。

    在SecondViewController.h添加

     

    [cpp] view plaincopy
     
    1. #import <UIKit/UIKit.h>  
    2.   
    3. @interface SecondViewController : UIViewController  
    4. {  
    5.     UIToolbar *toolBar;  
    6. }  
    7. @end  


    在SecondViewController.m添加

     

    [cpp] view plaincopy
     
    1. - (void)viewDidLoad  
    2. {  
    3.     [super viewDidLoad];  
    4.   
    5.     [self.navigationController  setToolbarHidden:YES animated:YES];  
    6.   
    7.     UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(gotoThridView:)];  
    8.     toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0.0, self.view.frame.size.height - toolBar.frame.size.height - 44.0, self.view.frame.size.width, 44.0)];  
    9.     [toolBar setBarStyle:UIBarStyleDefault];  
    10.     toolBar.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;  
    11.     [toolBar setItems:[NSArray arrayWithObject:addButton]];  
    12.     [self.view addSubview:toolBar];  
    13.        
    14.     // Do any additional setup after loading the view from its nib.  
    15. }  

    先把RootView时显示的Toobar隐藏

        [self.navigationController setToolbarHidden:YESanimated:YES];然后把新建的Toolbar添加的SecondView中,并为Toobar设置了一个Item.  

        [toolBarsetItems:[NSArrayarrayWithObject:addButton]]; 

    BarButtonItem用 的是UIBarButtonSystemItemSearch, 效果如下:

    4、新建ThridView,从SecondView跳转到

    Commad+N新建一个ThridViewController,

    这个addButton跳转到ThridView

     

    [cpp] view plaincopy
     
    1. -(void)gotoThridView:(id)sender  
    2. {  
    3.     ThridViewController *thridView = [[ThridViewController alloc] init];  
    4.     [self.navigationController pushViewController:thridView animated:YES];  
    5.     thridView.title = @"Thrid View";  
    6.   
    7. }  


    跳转Second到Third效果:

     

    到此UINavigationController练习的差不多了。

  • 相关阅读:
    Apache虚拟主机配置(多个域名访问多个目录)(转)
    What I Learned as a Junior Developer Writing Tests for Legacy Code(转载)
    java.text包
    高性能前端框架React详解
    vue.js快速搭建图书管理平台
    vue.js用法和特性详解
    最接近原生APP体验的高性能前端框架——MUI
    用JS制作一个信息管理平台完整版
    JQuery实用技巧--学会你也是大神(1)——插件的制作技巧
    用JS制作一个信息管理平台(1)
  • 原文地址:https://www.cnblogs.com/hereiam/p/3814888.html
Copyright © 2011-2022 走看看