We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#ifndef YYSYNTH_DUMMY_CLASS #define YYSYNTH_DUMMY_CLASS(_name_) \ @interface YYSYNTH_DUMMY_CLASS_ ## _name_ : NSObject @end \ @implementation YYSYNTH_DUMMY_CLASS_ ## _name_ @end #endif
YYSYNTH_DUMMY_CLASS(NSString_YYAdd) 预编译后的内容:
YYSYNTH_DUMMY_CLASS(NSString_YYAdd)
@interface YYSYNTH_DUMMY_CLASS_NSString_YYAdd : NSObject @end @implementation YYSYNTH_DUMMY_CLASS_NSString_YYAdd @end
这样可以防止在工程中的文件中加入-all_load``-force_load 这点原理,没搞明白,有相关的资料没? http://developer.apple.com/library/mac/#qa/qa2006/qa1490.html 这个网址打开找不到.
-all_load``-force_load
The text was updated successfully, but these errors were encountered:
@xclidongbo 查其他问题看到这个, 这个应该是参考了 Three20 的 TT_FIX_CATEGORY_BUG. 把损坏的地址放到 google 里搜一下, 可以找到这个地址. https://developer.apple.com/library/content/qa/qa1490/_index.html 应该是一样的, 希望有帮助.
Sorry, something went wrong.
No branches or pull requests
YYSYNTH_DUMMY_CLASS(NSString_YYAdd)
预编译后的内容:
这样可以防止在工程中的文件中加入
-all_load``-force_load
这点原理,没搞明白,有相关的资料没?
http://developer.apple.com/library/mac/#qa/qa2006/qa1490.html
这个网址打开找不到.
The text was updated successfully, but these errors were encountered: