码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 简单实用的一些宏定义

时间:2014-08-01 12:43:41      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   io   ar   line   size   

#define WDWBaseURL @"http://192.168.1.1/"  //字符串

#define TOWERTabBarItemTitleOffset UIOffsetMake (0, -3) //点

 #define WDWFontColor3d3d3d  [UIColor colorWithRed:61/255.0f  green:61/255.0f  blue:61/255.0f alpha:1]//颜色

#define WDWRedColo [UIColor colorWithRed:201.0/255.0f  green:0.0f  blue:0.0f alpha:1]

#define iPhone5 ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 1136), [[UIScreen mainScreen] currentMode].size) : NO)  //bool

 #define notIos7 [[UIDevice currentDevice].systemVersion floatValue] < 7.0 //bool

#define ALERT(title,msg,buttonTitle){UIAlertView* alert = [[UIAlertView alloc] initWithTitle:title message:msg delegate:nil cancelButtonTitle:buttonTitle otherButtonTitles:nil];[alert show];} //UIAlertView

#define count1 60  //数字

iOS 简单实用的一些宏定义,布布扣,bubuko.com

iOS 简单实用的一些宏定义

标签:style   http   color   os   io   ar   line   size   

原文地址:http://www.cnblogs.com/Ewenblog/p/3884440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!