// 狀態(tài)欄
CGFloat statusHeight = [[UIApplication sharedApplication] statusBarFrame].size.height;
// 導(dǎo)航欄
CGFloat navigationHeight = self.navigationController.navigationBar.frame.size.height;
//tabBar高度 在tabBarController中使用 繼承自UITabBarController的VC
CGFloat tabBarHeight = self.tabBar.frame.size.height;
// 在非tabBarController中使用 (這兒取你當(dāng)前tabBarVC的實(shí)例)
UITabBarController *tabBarVC = [[UITabBarController alloc] init];
CGFloat tabBarHeight = tabBarVC.tabBar.frame.size.height;
// toolBar高度
CGFloat toolBarHeight = self.navigationController.toolBar.frame.size.height;
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者