iOS常见宏理解及使用方法
foundation_export, uikit_extern
该宏的作用类似于extern,使用方法也与extern类似,在.m文件中,定义如下
nsstring *const kfoundationexportstring = @"hello world"; nsstring *const kexternstring = @"hello world";
然后在.h文件中加上以下声明, 就可以在导入该.h文件的类中访问该常量。
foundation_export nsstring *const kfoundationexportstring; extern nsstring *const kexternstring;
如果要在未导入该.h文件的类中访问这两个常量, 则应该将上面的代码放入该类的.m文件中。
uikit_extern相比extern只是增加了兼容性,使用方法一样。
使用如下:
nsstring *str = @"hello world"; if (str == kconstantstring) { nslog(@"equal"); }
使用foundation_export声明的字符串常量比较的是指针的地址, 而#define宏定义的常量字符串只能使用isequaltostring来比较, 前者更加高效。
define与foundation_export比较
ns_string_enum 和 ns_extensible_string_enum
这两个个宏定义是用于为objective-c桥接swift所使用的,它的作用是在桥接到 swift 中时可进行枚举扩展,使用如下:
在.h文件中声明
typedef nsstring *viewcontrollerkey ns_string_enum; foundation_export viewcontrollerkey const viewcontrollerkeytitle; foundation_export viewcontrollerkey const viewcontrollerkeysubtitle; foundation_export viewcontrollerkey const viewcontrollerkeysummary;
.m文件中定义:
viewcontrollerkey const viewcontrollerkeytitle = @"title"; viewcontrollerkey const viewcontrollerkeysubtitle = @"subtitle"; viewcontrollerkey const viewcontrollerkeysummary = @"summary";
在swift文件中使用如下:
print("\(viewcontrollerkey.title) \(viewcontrollerkey.subtitle) \(viewcontrollerkey.summary)")
这两个宏定义的区别在于,ns_string_enum是确定的, ns_extensible_string_enum则是可扩展的,还可以在在swift中进行扩展。
__va_args__
##就是个粘合剂,将前后两部分粘合起来,也就是有“字符化”的意思。
而__va_args__在预编译中会被实参列表取代, ...表示可变参列表。
##__va_args__ 宏前面加上##的作用在于,当可变参数的个数为0时,这里的##起到把前面多余的,去掉的作用,否则会编译出错
#define block_exec(block, ...) if (block) { block(__va_args__); }; #ifdef debug #define loginfo( s, ... ) nslog( @"[loginfo]<%@:(%d)> %@", [[nsstring stringwithutf8string:__file__] lastpathcomponent], __line__, [nsstring stringwithformat:(s), ##__va_args__] ) #else #define loginfo( s, ... ) #endif
源码地址:github: zpfate/definedemo (本地下载)
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。