English 中文(简体)
我能从哪里获得一份完整的国家安保等级清单(Cocoa)?
原标题:
  • 时间:2009-05-19 01:21:28
  •  标签:

我能从哪里获得一份完整的国家安保等级清单?

最佳回答

我记得,基金会、应用Kit和核心数据框架包含所有未经解释的NS*课程。 foundation,> 。

问题回答

Xcode -> Help -> Documentation: look under AppKit Reference and Foundation Reference. 我确信在“pple”网站上有类似文件。

如果你只是想禁止一份所有客观的 c级清单,而开端

grep -Rho "@interface [a-zA-Z]+" /Applications/Xcode.app/Contents/Developer/Platforms | cut -d" " -f2 | awk  !a[$0]++  | sort

You will need Xcode installed. This will take a while but covers all platforms (macOS, tvOS, watchOS etc). To just target a particular platform adjust the path accordingly. So for just macOS change:

/Applications/Xcode.app/Contents/Developer/Platforms

:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk

或者你可以将其进一步缩小到一个特定框架。 还将为议定书开展工作。 Just change the @interface for @protocol.





相关问题
热门标签