Created
April 27, 2013 21:55
-
-
Save colinta/5474897 to your computer and use it in GitHub Desktop.
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
Teacup.handler UINavigationBar, :backgroundImage do |styles| | |
styles.each do |metric, image| | |
case metric | |
when UIBarMetricsDefault, :portrait | |
self.setBackgroundImage(image && image.uiimage, forBarMetrics:UIBarMetricsDefault) | |
when UIBarMetricsLandscapePhone, :landscape | |
self.setBackgroundImage(image && image.uiimage, forBarMetrics:UIBarMetricsLandscapePhone) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment