Files
libreoffice/ios/iosremote/UINavigationController+Theme.m
Siqi LIU 2a5d3cbebc design style revamped for iOS7
Change-Id: I469e50e779ac201ab15aa8fff8e2f6fcfb2f99b6
2013-08-07 12:38:03 +08:00

24 lines
703 B
Objective-C

//
// UINavigationController+Theme.m
// VLC for iOS
//
// Created by Romain Goyet on 14/06/13.
// Copyright (c) 2013 Applidium. All rights reserved.
//
// Refer to the COPYING file of the official project for license.
//
#import "UINavigationController+Theme.h"
@implementation UINavigationController (Theme)
- (void)loadTheme
{
UINavigationBar *navBar = self.navigationBar;
[navBar setBackgroundImage:[UIImage imageNamed:@"navBarBackground"]
forBarMetrics:UIBarMetricsDefault];
[navBar setBackgroundImage:[UIImage imageNamed:@"navBarBackgroundPhoneLandscape"]
forBarMetrics:UIBarMetricsLandscapePhone];
navBar.barStyle = UIBarStyleBlack;
}
@end