美文网首页
FOUNDATION_EXPORT

FOUNDATION_EXPORT

作者: study_sea | 来源:发表于2016-12-13 15:11 被阅读52次

.h

FOUNDATION_EXPORT NSString * const AFNetworkingReachabilityDidChangeNotification;

FOUNDATION_EXPORT NSString * const AFNetworkingReachabilityNotificationStatusItem;

.m

NSString * const AFNetworkingReachabilityDidChangeNotification = @"com.alamofire.networking.reachability.change";

NSString * const AFNetworkingReachabilityNotificationStatusItem = @"AFNetworkingReachabilityNotificationStatusItem";

FOUNDATION_EXPORT相当于对extern做了兼容处理。

NSObjCRuntime.h

与#define的对比:声明(.h)和实现(.m)可以分开。

相关文章

网友评论

      本文标题:FOUNDATION_EXPORT

      本文链接:https://www.haomeiwen.com/subject/fdfbmttx.html