Marino Faggiana 7 years ago
parent
commit
a2f6d8616f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      iOSClient/Intro/CCIntro.m

+ 4 - 0
iOSClient/Intro/CCIntro.m

@@ -47,6 +47,8 @@
 
 - (void)introWillFinish:(EAIntroView *)introView wasSkipped:(BOOL)wasSkipped
 {
+    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
+    
     if (self.delegate && [self.delegate respondsToSelector:@selector(introWillFinish:wasSkipped:)])
         [self.delegate introWillFinish:introView wasSkipped:wasSkipped];
 }
@@ -118,6 +120,8 @@
     
     [intro setDelegate:self];
     [intro showInView:self.rootView animateDuration:duration];
+    
+    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
 }
 
 @end