iOS 开发常用宏(1)

//字符串是否为空

#define kStringIsEmpty(str) ([str isKindOfClass:[NSNull class]] || str == nil || [str length] < 1 ? YES : NO )

//数组是否为空

#define kArrayIsEmpty(array) (array == nil || [array isKindOfClass:[NSNull class]] || array.count == 0)

//字典是否为空

#define kDictIsEmpty(dic) (dic == nil || [dic isKindOfClass:[NSNull class]] || dic.allKeys == 0)

//是否是空对象

#define kObjectIsEmpty(_object) (_object == nil \

||[_objectisKindOfClass:[NSNullclass]]\

||([_objectrespondsToSelector:@selector(length)]&&[(NSData*)_objectlength]==0)\

||([_objectrespondsToSelector:@selector(count)]&&[(NSArray*)_objectcount]==0))

//获取屏幕宽度与高度

#define kScreenWidth \

([[UIScreenmainScreen]respondsToSelector:@selector(nativeBounds)]?[UIScreenmainScreen].nativeBounds.size.width/[UIScreenmainScreen].nativeScale:[UIScreenmainScreen].bounds.size.width)

#define kScreenHeight \

([[UIScreenmainScreen]respondsToSelector:@selector(nativeBounds)]?[UIScreenmainScreen].nativeBounds.size.height/[UIScreenmainScreen].nativeScale:[UIScreenmainScreen].bounds.size.height)

#define kScreenSize \

([[UIScreenmainScreen]respondsToSelector:@selector(nativeBounds)]?CGSizeMake([UIScreenmainScreen].nativeBounds.size.width/[UIScreenmainScreen].nativeScale,[UIScreenmainScreen].nativeBounds.size.height/[UIScreenmainScreen].nativeScale):[UIScreenmainScreen].bounds.size)

//开发的时候打印,但是发布的时候不打印的NSLog

#ifdef DEBUG

#define NSLog(...) NSLog(@"%s 第%d行 \n %@\n\n",__func__,__LINE__,[NSString stringWithFormat:__VA_ARGS__])

#else

#define NSLog(...)

#endif

//弱引用/强引用

#define kWeakSelf(type)   __weak typeof(type) weak##type = type;

#define kStrongSelf(type) __strong typeof(type) type = weak##type;

//颜色

#define kRGBColor(r, g, b)     [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0]

#define kColorWithHex(rgbValue) \

[UIColorcolorWithRed:((float)((rgbValue&0xFF0000)>>16))/255.0\

green:((float)((rgbValue&0xFF00)>>8))/255.0\

blue:((float)(rgbValue&0xFF))/255.0alpha:1.0]

//获取沙盒Document路径

#define kDocumentPath [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]

//获取沙盒temp路径

#define kTempPath NSTemporaryDirectory()

//获取沙盒Cache路径

#define kCachePath [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject]

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • www.dletc.com.cn 大家都知道使用宏不仅方便,而且可以提高开发效率。下面小卓君搜罗了一些iOS开发过...
    大连中软卓越阅读 298评论 0 0
  • iOS开发过程中,使用的一些常用宏定义 字符串是否为空#define kStringIsEmpty(str) ([...
    goyohol阅读 5,400评论 30 85
  • 大家都是知道使用宏不仅方便,而且可以提高开发效率。下面总结了iOS开发过程中的一些常用宏,会持续的往里面添加。 /...
    MTDeveloper阅读 162评论 0 0
  • //字符串是否为空 #define kStringIsEmpty(str) ([str isKindOfClass...
    __life__阅读 446评论 0 0
  • runtime怎么添加属性、方法等 • ivar表示成员变量 • class_addIvar•class_addM...
    指尖猿阅读 302评论 0 1