setNavigationBarHidden:(Boolean) animated:(Boolean)
setToolBarHidden:(Boolean) animated:(Boolean)
(void)viewDidLoad { [super viewDidLoad];
if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) { NSArray* sv = self.view.subviews; for( UIView* v in sv ) { v.frame = CGRectMake(v.frame.origin.x, v.frame.origin.y + 20, v.frame.size.width, v.frame.size.height); } } } ```