//解決iOS 7以上版面會跑掉的問題
+(void) setViewControllerTranslucent:(UIViewController *)viewController{
if( [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0f )
{
viewController.edgesForExtendedLayout = UIRectEdgeNone;
if (viewController.navigationController) {
viewController.navigationController.navigationBar.translucent = NO;
}
if (viewController.tabBarController) {
viewController.tabBarController.tabBar.translucent = NO;
}
}
}
沒有留言:
張貼留言