Skip to content

Instantly share code, notes, and snippets.

@ssherar
Created March 6, 2015 15:31
Show Gist options
  • Save ssherar/d43a8bd97742a3ff0787 to your computer and use it in GitHub Desktop.
Save ssherar/d43a8bd97742a3ff0787 to your computer and use it in GitHub Desktop.
Swift - fading the navigationBar to a colour
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