创建新应用常用的宏定义
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建新应用常用的宏定义相关的知识,希望对你有一定的参考价值。
#define kWidth [UIScreen mainScreen].bounds.size.width
#define kHeight [UIScreen mainScreen].bounds.size.height
#define RGBA(r,g,b,a) [UIColor colorWithRed:r/255.0f green:g/255.0f blue:b/255.0f alpha:a]
#define RGB(r,g,b) RGBA(r,g,b,1.0f)
#define STAND_DEFAULT [NSUserDefaults standardUserDefaults]
#define RGB(r,g,b) RGBA(r,g,b,1.0f)
#define STAND_DEFAULT [NSUserDefaults standardUserDefaults]
#define NOTIFICATION_DEFAULT [NSNotificationCenter defaultCenter]
以上是关于创建新应用常用的宏定义的主要内容,如果未能解决你的问题,请参考以下文章