object-c 常用判断null的宏定义,如果是null直接返回@""
程序员文章站
2022-06-14 21:42:36
#define checkNull(__X__) (__X__) == [NSNull null] || (__X__) == nil ? @"" : [NSString stringWithFormat:@"%@", (__X__)] ......
#define checknull(__x__) (__x__) == [nsnull null] || (__x__) == nil ? @"" : [nsstring stringwithformat:@"%@", (__x__)]