Parcourir la source

UIApplication setStatusBarHidden:animation has been deprecated since iOS 3.2, use setStatusBarHidden:withAnimation instead.

marynate il y a 11 ans
Parent
commit
2371a92fde
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      platform/iphone/app_delegate.mm

+ 1 - 1
platform/iphone/app_delegate.mm

@@ -165,7 +165,7 @@ static int frame_count = 0;
 	printf("**************** app delegate init\n");
 	CGRect rect = [[UIScreen mainScreen] bounds];
 
-	[application setStatusBarHidden:YES animation:NO];
+	[application setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
 	// disable idle timer
 	application.idleTimerDisabled = YES;