Skip to content

Instantly share code, notes, and snippets.

@windless
Created October 22, 2014 05:54
Show Gist options
  • Save windless/8743285dc3764d6417aa to your computer and use it in GitHub Desktop.
Save windless/8743285dc3764d6417aa to your computer and use it in GitHub Desktop.
Change UINavigation background image with animation
var animation = CATransition()
animation.duration = 0.3
animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut)
animation.type = kCATransitionFade
self.navigationController?.navigationBar.layer.addAnimation(animation, forKey: nil)
self.navigationController?.navigationBar
.setBackgroundImage(UIImage(named: "enjory_menubar"), forBarMetrics: UIBarMetrics.Default)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment