UINavigationController+Theme.m 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. /*****************************************************************************
  2. * UINavigationController+Theme.m
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. * Romain Goyet <romain.goyet # applidium.com>
  10. *
  11. * Refer to the COPYING file of the official project for license.
  12. *****************************************************************************/
  13. #import "UINavigationController+Theme.h"
  14. @implementation UINavigationController (Theme)
  15. - (void)loadTheme
  16. {
  17. UINavigationBar *navBar = self.navigationBar;
  18. if (!SYSTEM_RUNS_IOS7_OR_LATER) {
  19. [navBar setBackgroundImage:[UIImage imageNamed:@"navBarBackground"]
  20. forBarMetrics:UIBarMetricsDefault];
  21. navBar.barStyle = UIBarStyleBlack;
  22. } else {
  23. navBar.barTintColor = [UIColor colorWithRed:1.0f green:(132.0f/255.0f) blue:0.0f alpha:1.f];
  24. navBar.tintColor = [UIColor whiteColor];
  25. navBar.titleTextAttributes = @{ UITextAttributeTextColor : [UIColor whiteColor] };
  26. }
  27. }
  28. @end