How to get the height of the tabbar programmatically? How to get the height of the tabbar programmatically? ios ios

How to get the height of the tabbar programmatically?


I don't totally understand your P.S., but you can do:

tabBarController?.tabBar.frame.size.height


If you want to get the standard height for the UITabBar control then you can do:

    UITabBarController *tabBarController = [UITabBarController new];    CGFloat tabBarHeight = tabBarController.tabBar.frame.size.height;


prettier

CGRectGetHeight(self.tabBarController.tabBar.frame)