zoukankan      html  css  js  c++  java
  • UINavigationBar自定义背景以及按钮

    UINavigationBar自定义导航栏背景和按钮,完美支持横屏竖屏旋转,视图控制器可以分别使用自己的导航栏

    此方法可以通过Apple审核,导航上的按钮背景需要做,否则看起来不那么和之又谐  . 此方法使用于ios5。0以下


    //CustomNavigationBar.h   
    @interface UINavigationBar (UINavigationBarCategory)   
    UIImageView *backgroundView;   
    - (void)setBackgroundImage:(UIImage*)image;   
    - (void)insertSubview:(UIView *)view atIndex:(NSInteger)index;   
    @end   
      
    //CustomNavigationBar.m   
    @implementation UINavigationBar (UINavigationBarCategory)   
    -(void)setBackgroundImage:(UIImage*)image   
    {   
        if(image == nil)   
        {   
            [backgroundView removeFromSuperview];   
        }   
        else   
        {   
            backgroundView = [[UIImageView alloc] initWithImage:image];   
            backgroundView.tag = 1;   
            backgroundView.frame = CGRectMake(0.f, 0.f, self.frame.size.width, self.frame.size.height);   
            backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;   
            [self addSubview:backgroundView];   
            [self sendSubviewToBack:backgroundView];   
            [backgroundView release];   
        }   
    }   
      
    //for other views   
    - (void)insertSubview:(UIView *)view atIndex:(NSInteger)index   
    {   
        [super insertSubview:view atIndex:index];   
        [self sendSubviewToBack:backgroundView];   
    }   
    @end   
      
    //YourViewController.m   
    - (void)viewWillAppear:(BOOL)animated   
    {   
        [super viewWillAppear:animated];   
        [self.navigationController.navigationBar   
            setBackgroundImage:[UIImage imageNamed:@"navigation_bar_bg.png"]];   

    //判断设备的版本

    #if __IPHONE_OS_VERSION_MAX_ALLOWED >= 50000  

        if ([self.navigationController.navigationBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)]){  

           //ios5 新特性  

            [self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"titleBar.png"] forBarMetrics:UIBarMetricsDefault];  

        }  

    #endif  


    }  

  • 相关阅读:
    hdu2066最短路径spfa算法对每个点分别判断0ms过
    关于oj上c++与g++的区别以及一些常见的问题
    hdu1213依旧并查集。求集合的个数
    hdu2112最短路径
    hdu1232最水并查集模版题
    hdu1325最大联通分量+树中点与边数值关系
    hdu2544最短路径spfa模版题
    hdu1856依旧并查集
    hdu1879最小生成树+并查集
    sencha touch 视图(view) show与hide事件探讨
  • 原文地址:https://www.cnblogs.com/linyawen/p/2594127.html
Copyright © 2011-2022 走看看