OC小知识点

  1. property. h文件或是扩展文件中声明的所有property。可以通过OBJC_EXPORT objc_property_t _Nonnull * _Nullable class_copyPropertyList(Class _Nullable cls, unsigned int * _Nullable outCount) OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);函数获得所有的属性。
  2. Ivar.变量。指对象内存空间中包含的所有变量。可以通过OBJC_EXPORT Ivar _Nonnull * _Nullable class_copyIvarList(Class _Nullable cls, unsigned int * _Nullable outCount) OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);获取所有的变量
  3. 环境宏定义。 Xcode工程->TAGGETS->Build Setting->Apple Clang PreProcessing->Preprocessor Macros
    Debug:DEBUG=1
    CGov_Build:GCOK_BUILD=1 DEBUG=1
    Release:

你可能感兴趣的:(OC小知识点)