// // PrefixHeader.pch // Lighting // // Created by 曹云霄 on 16/4/27. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #ifndef PrefixHeader_pch #define PrefixHeader_pch #import "MBProgressHUD.h" #import "MJRefresh.h" #import "MMDrawerController.h" #import "RightViewController.h" #import "IQKeyboardManager.h" #import "AFNetworking.h" #import "NetworkRequestClassManager.h" #import "NSArray+Objectwithindex.h" #import "ShoppingViewController.h" #import "ClientViewController.h" #import "Masonry.h" // Include any system framework and library headers here that should be included in all compilation units. // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file. /** * AppDelegate代理 */ #define SHARED_APPDELEGATE ((AppDelegate *)([UIApplication sharedApplication].delegate)) /** * 屏幕的物理高度 */ #define ScreenHeight [UIScreen mainScreen].bounds.size.height /** * 导航栏高度 */ #define NavigationHeight 64 /** * 屏幕的物理宽度 */ #define ScreenWidth [UIScreen mainScreen].bounds.size.width /** * 定义UIImage对象 */ #define TCImage(imageName) [UIImage imageNamed:[NSString stringWithFormat:@"%@",imageName]] /** * AppDelegate代理 */ #define SHARED_APPDELEGATE ((AppDelegate *)([UIApplication sharedApplication].delegate)) /** * 屏幕的物理高度 */ #define ScreenHeight [UIScreen mainScreen].bounds.size.height /** * 屏幕的物理宽度 */ #define ScreenWidth [UIScreen mainScreen].bounds.size.width /** * 定义UIImage对象 */ #define TCImage(imageName) [UIImage imageNamed:[NSString stringWithFormat:@"%@",imageName]] /** * 获取RGB颜色 */ #define kTCColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0] /** * 右侧菜单宽度 */ #define RightWidth 200 /** * 0 */ #define Zero 0 /** * 断网标示 */ #define BROKEN @"-1" /** * 主题蓝色 */ #define kMainBlueColor [UIColor colorWithRed:89/255.0 green:172/255.0 blue:220/255.0 alpha:1.0] /** * 默认圆角系数 */ #define kCornerRadius 3 /** * 主题灰色 */ #define kMainGrayColor [UIColor colorWithRed:241/255.0 green:241/255.0 blue:241/255.0 alpha:1.0] /** * 筛选框复选按钮圆角尺寸 */ #define kSelectedCornerRadius 20 #endif /* PrefixHeader_pch */