UINavigationController 阴影

Posted

技术标签:

【中文标题】UINavigationController 阴影【英文标题】:UINavigationController Shadow 【发布时间】:2015-09-08 17:28:21 【问题描述】:

尝试按照here 概述的方法向我的 UINavigationController 添加阴影。但是,该方法似乎不起作用。

这是我正在使用的代码:

- (void)viewDidLoad

    [super viewDidLoad];

    // ..... etc. ....

    self.navigationController.view.layer.shadowPath = [UIBezierPath bezierPathWithRoundedRect:self.navigationController.view.bounds cornerRadius:self.navigationController.view.layer.cornerRadius].CGPath;
    [self.navigationController.view.layer setMasksToBounds: NO];
    [self.navigationController.view.layer setShadowColor: [UIColor blackColor].CGColor];
    [self.navigationController.view.layer setShadowOffset: CGSizeMake(0, 1)];
    [self.navigationController.view.layer setShadowRadius:3];
    [self.navigationController.view.layer setShadowRadius: 4.0];
    [self.navigationController.view.layer setShadowOpacity: 0.25];

没有阴影 :((见照片)。

任何想法为什么?感谢您的任何意见。

【问题讨论】:

在界面生成器中,也许您可​​能想尝试将 mapView 移到层次结构的较低位置。 检查我的答案@Nick B 【参考方案1】:

这对我有用:尝试将您设置的任何内容设置为导航栏而不是导航控制器:r

self.nvBar.layer.shadowPath = [UIBezierPath bezierPathWithRoundedRect:self.nvBar.bounds cornerRadius:self.nvBar.layer.cornerRadius].CGPath;
        [self.nvBar.layer setShadowColor: [UIColor redColor].CGColor];
    [self.nvBar.layer setShadowOffset: CGSizeMake(0, 13)];
    [self.nvBar.layer setShadowRadius:3];
    [self.nvBar.layer setShadowRadius: 4.0];
    [self.nvBar.layer setShadowOpacity: 0.15];

【讨论】:

在你的情况下使用 self.navigationController.navigationBar.layer 谢谢@Mr.T!是的,我需要self.navigationController.navigationBar.layer.[etc]。再次感谢

以上是关于UINavigationController 阴影的主要内容,如果未能解决你的问题,请参考以下文章

iOS 7 UINavigationController 推送动画阴影

如何从导航栏中删除阴影线?

导航栏UINavigationController

CALayer - 暗影导致性能下降?

关闭 UINavigationController 并呈现另一个 UINavigationController

iOS:如何在现有 UINavigationController 中打开另一个 UINavigationController?