码迷,mamicode.com
首页 > 移动开发 > 详细

ios 把navigationController.navigationBar 下面的黑线去掉

时间:2014-12-08 12:04:57      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:io   ar   color   os   sp   for   on   bs   ad   

- (void)viewWillAppear:(BOOL)animated{

    [super viewWillAppear:YES];

 

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

    [self.navigationController.navigationBar setShadowImage:[self createImageWithColor:[UIColor clearColor]]];

 

}

 

- (UIImage *)createImageWithColor:(UIColor *)color{

    CGRect rect = CGRectMake(0.0f,0.0f,1.0f,1.0f);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context =UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    UIImage *theImage =UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return theImage;

}

ios 把navigationController.navigationBar 下面的黑线去掉

标签:io   ar   color   os   sp   for   on   bs   ad   

原文地址:http://www.cnblogs.com/wangpanpan/p/4150704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!