UINavigationBar set custom shadow in AppDelegate.swift

瘦欲@ 提交于 2019-12-05 06:42:02

A better solution by still using appearance and that does not require you to subclass the UINavigationBar and adding code to each navigation controller, would be:

Extend the UINavigationBar

extension UINavigationBar {

  var castShadow : String {
    get { return "anything fake" }
    set {
        self.layer.shadowOffset = CGSizeMake(0, 3)
        self.layer.shadowRadius = 3.0
        self.layer.shadowColor = UIColor.yellowColor().CGColor
        self.layer.shadowOpacity = 0.7

    }
  }

}

And add an app wide appearance rule (inside appdelegate "didFinishLaunchingWithOptions" for example)

UINavigationBar.appearance().castShadow = ""

Easy, works on Swift 3:

    navigationController?.navigationBar.layer.shadowColor = UIColor.black.cgColor
    navigationController?.navigationBar.layer.shadowOpacity = 1
    navigationController?.navigationBar.layer.shadowOffset = CGSize.zero
    navigationController?.navigationBar.layer.shadowRadius = 10
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!