Merge pull request #3587 from Dhilan007/develop

Fix not hide status on ios7
This commit is contained in:
minggo 2013-09-12 19:31:42 -07:00
commit d74adcf5e4
2 changed files with 7 additions and 0 deletions

View File

@ -4,5 +4,6 @@
@interface RootViewController : UIViewController {
}
- (BOOL) prefersStatusBarHidden;
@end

View File

@ -43,6 +43,12 @@
return YES;
}
//fix not hide status on ios7
- (BOOL)prefersStatusBarHidden
{
return YES;
}
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];