让状态栏隐藏

在controllor中实现方法便可实现状态栏隐藏

- (BOOL)prefersStatusBarHidden

{

returnYES;

}


2.让导航栏隐藏

self.navigationController.navigationBar.hidden = YES;