// // GlobalDefines.h // GSD_WeiXin(wechat) // // Created by aier on 16/2/12. // Copyright © 2016年 GSD. All rights reserved. // /* ********************************************************************************* * * GSD_WeiXin * * QQ交流群: 362419100(2群) 459274049(1群已满) * Email : gsdios@126.com * GitHub: https://github.com/gsdios/GSD_WeiXin * 新浪微博:GSD_iOS * * 此“高仿微信”用到了很高效方便的自动布局库SDAutoLayout(一行代码搞定自动布局) * SDAutoLayout地址:https://github.com/gsdios/SDAutoLayout * SDAutoLayout视频教程:http://www.letv.com/ptv/vplay/24038772.html * SDAutoLayout用法示例:https://github.com/gsdios/SDAutoLayout/blob/master/README.md * ********************************************************************************* */ #ifndef GlobalDefines_h #define GlobalDefines_h #define SDColor(r, g, b, a) [UIColor colorWithRed:(r / 255.0) green:(g / 255.0) blue:(b / 255.0) alpha:a] #define Global_tintColor [UIColor colorWithRed:0 green:(190 / 255.0) blue:(12 / 255.0) alpha:1] #define Global_mainBackgroundColor SDColor(248, 248, 248, 1) #define TimeLineCellHighlightedColor [UIColor colorWithRed:92/255.0 green:140/255.0 blue:193/255.0 alpha:1.0] #define DAY @"day" #define NIGHT @"night" #endif