UINavigationController+Theme.m 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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"] forBarMetrics:UIBarMetricsDefault];
  20. navBar.barStyle = UIBarStyleBlack;
  21. navBar.translucent = NO;
  22. navBar.opaque = YES;
  23. } else {
  24. navBar.barTintColor = [UIColor VLCOrangeTintColor];
  25. navBar.tintColor = [UIColor whiteColor];
  26. navBar.titleTextAttributes = @{ UITextAttributeTextColor : [UIColor whiteColor] };
  27. }
  28. }
  29. @end