xcode – Apple LLVM 4.2,Objective-C的可用__attribute __(())列表

前端之家收集整理的这篇文章主要介绍了xcode – Apple LLVM 4.2,Objective-C的可用__attribute __(())列表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找可用__attribute __(())指令的列表,我找不到它们.我只知道__attribute __((objc_requires_super)).

我发誓我搜索搜索,我没有找到任何东西.也许我错过了一些包含在搜索中的术语.

非常感谢.

解决方法

文档有时会落后.要获得完整的列表,没有比源代码更新的地方了!

https://github.com/llvm-mirror/clang/blob/master/include/clang/Basic/Attr.td

这是一个例子:

def Visibility : InheritableAttr {
  let Clone = 0;
  let Spellings = [GNU<"visibility">,CXX11<"gnu","visibility">];
  let Args = [EnumArgument<"Visibility","VisibilityType",["default","hidden","internal","protected"],["Default","Hidden","Protected"]>];
}

在这里我们可以看到它是如何在GNU和CXX11 GNU中定义的.它还显示了这种情况下的有效参数(默认,隐藏,内部,受保护).

原文链接:https://www.f2er.com/iOS/330547.html

猜你在找的iOS相关文章