Magic Studio

专心做有逼格的APP!

2013年9月25日 #

ios7适配--隐藏status bar

摘要: //viewDidloadif ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {// iOS 7[self prefersStatusBarHidden];[self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];} else {// iOS 6[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnima 阅读全文

posted @ 2013-09-25 21:26 Mr 布鲁斯 阅读(278) 评论(0) 推荐(0) 编辑

ios7适配--navgationbar遮住下面view的处理

摘要: 3down votefavoriteHave you guys stumbled up on this issue ?Basically in iOS 7 Navigation Controller is rendered over the sub-view I navigated to.In iOS 6 view I navigate to is enclosed between navigation bar and footer. In iOS 7 it looks like sub-view is rendered full-screen, under navigation bar an 阅读全文

posted @ 2013-09-25 14:27 Mr 布鲁斯 阅读(1426) 评论(0) 推荐(0) 编辑

导航