Created
March 6, 2015 15:31
-
-
Save ssherar/d43a8bd97742a3ff0787 to your computer and use it in GitHub Desktop.
Swift - fading the navigationBar to a colour
This file contains hidden or 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
import UIKit | |
/// Won't work - will expand the colour from Left hand corner out | |
self.navigationController?.navigationBar.barTintColor = nil | |
UIView.animateWithDuration(1.0) { | |
self.navigationController?.navigationBar.barTintColor = UIColor.blueColor() | |
} | |
///Works | |
self.navigationController?.navigationBar.barTintColor = UIColor.whiteColor() | |
UIView.animateWithDuration(1.0) { | |
self.navigationController?.navigationBar.barTintColor = UIColor.blueColor() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment