美文网首页
ios 把navigationController.naviga

ios 把navigationController.naviga

作者: 梁苏珍 | 来源:发表于2017-07-07 13:39 被阅读0次

- (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.naviga

      本文链接:https://www.haomeiwen.com/subject/emilhxtx.html