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

ios 宏

时间:2015-06-23 12:06:46      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

//字符串宏

#define EMPTY_STRING(string)     ( [string isKindOfClass:[NSNull class]] ||     string == nil || [string isEqualToString:@""])

#define GET_STRING(string) (EMPTY_STRING(string) ? @"" : string)



//单例类
#define DECLARE_SINGLETON(cls_name, method_name)    + (cls_name*)method_name;

#define IMPLEMENT_SINGLETON(cls_name, method_name)    + (cls_name *)method_name {        static cls_name *method_name;        static dispatch_once_t onceToken;        dispatch_once(&onceToken, ^{            method_name = [[cls_name alloc] init];        });        return method_name;    }

//本地化
#define L(s) NSLocalizedString((s), nil)



ios 宏

标签:

原文地址:http://my.oschina.net/u/1782374/blog/469573

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