首页 > 其他 > 详细

导航栏全透明效果, 只保留左右两个按钮, 如何实现?

时间:2016-02-28 16:30:38      阅读:176      评论:0      收藏:0      [点我收藏+]

   [self.navigationController.navigationBar setBackgroundImage:[UIImage imageWithColor:[UIColor clearColor]] forBarMetrics:UIBarMetricsCompact];
   self.navigationController.navigationBar.barStyle = UIBaselineAdjustmentNone;
   [self.navigationController.navigationBar setShadowImage:[UIImage imageWithColor:[UIColor clearColor]]];
   self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
   
   for (id view in self.navigationController.navigationBar.subviews)
   {
       if ([view isKindOfClass:NSClassFromString(@"_UINavigationBarBackground")])
       {
           for (id i in [view subviews])
           {
               if ([i isKindOfClass:[UIImageView class]])
               {
                   [i removeFromSuperview];
               }
           }
       }
   }
   
   [[[[self.navigationController.navigationBar.subviews firstObject] subviews] firstObject] removeFromSuperview];
   
   self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(add)];
   self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"More" style:UIBarButtonItemStyleDone target:self action:@selector(more)];

 

 

 

 

北京--疯子

+ (UIImage *)imageWithColor:(UIColor *)color
{
   CGRect rect = CGRectMake(0, 0, 1, 1);
   UIGraphicsBeginImageContext(rect.size);
   CGContextRef context = UIGraphicsGetCurrentContext();
   CGContextSetFillColorWithColor(context, color.CGColor);
   CGContextFillRect(context, rect);
   UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
   UIGraphicsEndImageContext();
   
   return image;
}

导航栏全透明效果, 只保留左右两个按钮, 如何实现?

原文:http://www.cnblogs.com/linxiu-0925/p/5224882.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!