iOS开发中跟判断系统控件高度有关的头文件

//  Created by zhen7216 on 2017/12/29.
//  Copyright © 2017年 ChenZhen. All rights reserved.
//

#ifndef UtilsMacros_h
#define UtilsMacros_h

//判断状态栏高度
#define kStatusBarHeight [[UIApplication sharedApplication] statusBarFrame].size.height

//判断导航栏高度
#define kNavBarHeight 44.0

//判断TabBar高度
#define kTabBarHeight ([[UIApplication sharedApplication] statusBarFrame].size.height > 20 ? 83 : 49)

//判断导航栏加状态栏的高度
#define kTopHeight (kStatusBarHeight + kNavBarHeight)

#endif /* UtilsMacros_h */

你可能感兴趣的:(iOS开发中跟判断系统控件高度有关的头文件)