Reputation: 2302
I want to set some shadow to the bottom of my UINavigationBar for the whole application. Here is what I've tried but it doesn't work:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
UINavigationBar.appearance().layer.shadowOffset = CGSizeMake(0, 3)
UINavigationBar.appearance().layer.shadowRadius = 3.0
UINavigationBar.appearance().layer.shadowColor = UIColor.yellowColor().CGColor
UINavigationBar.appearance().layer.shadowOpacity = 0.7
}
Please, tell me how can I do this?
UPDATE: Solved by subclassing from UINavigationController
import UIKit
class ShadowUINavigationController: UINavigationController {
override func viewWillAppear(animated: Bool) {
let darkColor: CGColorRef = UIColor(hex: 0x212121).CGColor
let lightColor: CGColorRef = UIColor.clearColor().CGColor
let navigationBarBottom: CGFloat = self.navigationBar.frame.origin.y + self.navigationBar.frame.size.height + 20
println(self.navigationBar.frame.origin.y)
println(self.navigationBar.frame.size.height)
println(navigationBarBottom)
let newShadow: CAGradientLayer = CAGradientLayer()
newShadow.frame = CGRectMake(0, navigationBarBottom, self.view.frame.size.width, 1)
newShadow.colors = [darkColor, lightColor]
self.view.layer.addSublayer(newShadow)
super.viewWillAppear(animated)
}
}
Upvotes: 6
Views: 3682
Reputation: 3502
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
Upvotes: 1
Reputation: 156
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 = ""
Upvotes: 11