IOS 自定义导航栏背景_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > IOS 自定义导航栏背景

IOS 自定义导航栏背景

 2014/11/20 3:03:12  lgphp  程序员俱乐部  我要评论(0)
  • 摘要://-(void)setBackgroundImage:(UIImage*)backgroundImageforBarMetrics:(UIBarMetrics)barMetricsNS_AVAILABLE_IOS(5_0)UI_APPEARANCE_SELECTOR;-(id)init{self=[superinit];if(self){UINavigationBar*navBar=[selfnavigationBar];if([navBarrespondsToSelector
  • 标签:iOS 自定义
class="brush:objc;gutter:true;">//- (void)setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;
-(id)init
{
    self=[super init];
    if(self)
    {
        UINavigationBar *navBar=[self navigationBar];
        if([navBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)])
        {
//如果是IOS5
            [[UINavigationBar appearance]setBackgroundImage:[UIImage imageNamed:@"NavBar.png"] forBarMetrics:UIBarMetricsDefault];
        }
        else
        {
            UIImageView *imgView=(UIImageView*)[navBar viewWithTag:NAVBARIMAGETAG];
            if(imgView==nil)
            {
                imgView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0,navBar.frame.size.width, navBar.frame.size.height)];
                [imgView setImage:[UIImage imageNamed:@"NavBar.png"]];
                [navBar insertSubview:imgView atIndex:0];
                [imgView release];
            }
        }
    }
    return self;
}

  

上一篇: 《ASP.NET MVC 4 实战》学习笔记 6:验证 下一篇: 没有下一篇了!
发表评论
用户名: 匿名