Doxygen and NS_ENUM
If you're having trouble getting Doxygen to parse NS_ENUM
statements, here's the config file magic:
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
PREDEFINED = "NS_ENUM(_type, _name)=enum _name : _type"
You may or may not want to enable EXPAND_ONLY_PREDEF
to only expand that one macro.