diff --git a/Lock/UI/Private/A0NavigationController.m b/Lock/UI/Private/A0NavigationController.m index 6af384442..f7cb747b0 100644 --- a/Lock/UI/Private/A0NavigationController.m +++ b/Lock/UI/Private/A0NavigationController.m @@ -21,7 +21,7 @@ // THE SOFTWARE. #import "A0NavigationController.h" - +#import "A0Theme.h" @implementation A0NavigationController @@ -33,4 +33,10 @@ - (UIInterfaceOrientationMask)supportedInterfaceOrientations { return [last supportedInterfaceOrientations]; } +- (void)viewDidLoad { + [super viewDidLoad]; + A0Theme *theme = [A0Theme sharedInstance]; + self.view.backgroundColor = [theme colorForKey:A0ThemeScreenBackgroundColor]; +} + @end