Marino Faggiana 8 년 전
부모
커밋
a2f6d8616f
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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