Created
February 18, 2014 03:13
-
-
Save arzola/9064048 to your computer and use it in GitHub Desktop.
Put shadow into uinavigationbar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
self.navigationController.navigationBar.layer.shadowOpacity = 0.6; | |
self.navigationController.navigationBar.layer.shadowOffset = CGSizeMake(0, 1); | |
self.navigationController.navigationBar.layer.shadowRadius = 5; | |
self.navigationController.navigationBar.layer.masksToBounds = NO; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment