zoukankan      html  css  js  c++  java
  • iphone自动隐藏和显示工具栏和导航条

    转载:http://www.cnblogs.com/likwo/archive/2011/06/12/2078760.html

    iphone里如何实现像图片浏览那样的自动隐藏和导航条和工具栏呢?其实很简单,只需要设置toolbar和navigationBar的显示和隐藏属性就可以了。

    效果图如下

    未隐藏的效果图

     

    隐藏后的效果图 

     

     具体实现代码如下

     首先在viewDidLoad里设置toolBarHidden = NO, 默认是YES(隐藏的),为了让toolbar显示,需要设置为NO(不隐藏)。

    - (void)viewDidLoad 
    {
        [super viewDidLoad];
         self.title 
    = @"隐藏导航栏";
       
    // self.toolbarItems
        self.navigationController.toolbar.barStyle = self.toolBar.barStyle;
        self.navigationController.toolbarHidden 
    = NO;
        
        [self.navigationController.toolbar setTranslucent:YES];
        
        self.toolbarItems 
    =  [[[NSMutableArray alloc] initWithArray:self.toolBar.items] autorelease];
    }

     

     在点击中间button的时候的显示和隐藏navigation bar和toolBar

     实现代码如下:

    - (IBAction)toggleNavigationBar:(id)sender {
        
    //Check the current state of the navigation bar...
        BOOL navBarState = [self.navigationController isNavigationBarHidden];
        
    //Set the navigationBarHidden to the opposite of the current state.
        [self.navigationController setNavigationBarHidden:!navBarState animated:YES];
        [self.navigationController setToolbarHidden:
    !navBarState animated:YES];
        
    //Change the label on the button.
        if (navBarState) {
            [button setTitle:
    @"隐藏 Navigationr and toolbar" forState:UIControlStateNormal];
            [button setTitle:
    @"隐藏 Navigation Bar toolbar" forState:UIControlStateHighlighted];
        } 
    else {
            [button setTitle:
    @"显示 Navigation Bar toolbar" forState:UIControlStateNormal];
            [button setTitle:
    @"显示  Navigation Bar toolbar" forState:UIControlStateHighlighted];
        }
        
        
    }

     

    这样的效果有什么用呢,比如我们常见的电子书,点击中间那块区域的时候显示一些设置和导航。

     

    本文链接:http://www.cnblogs.com/likwo/archive/2011/06/12/2078760.htm

    转载请注明出处。

     

    参考文档:

    http://www.raddonline.com/blogs/geek-journal/iphone-sdk-uinavigationcontroller-hiding-the-navigation-bar 

    http://icodesnip.com/snippet/iphone/iphonesdkuinavigationbar

    THE END !

  • 相关阅读:
    CentOS 5.3 挂载 读写 ntfs硬盘
    Linux基础教程
    信息安全技术实用教程
    单片机原理与应用技术
    【36.11%】【codeforces 725C】Hidden Word
    【37.74%】【codeforces 725D】Contest Balloons
    【16.67%】【codeforces 667C】Reberland Linguistics
    【16.05%】【codeforces 664B】Rebus
    【record】10.17..10.23
    【23.33%】【codeforces 664C】International Olympiad
  • 原文地址:https://www.cnblogs.com/xingchen/p/2220894.html
Copyright © 2011-2022 走看看