I have a definition in Objective-C that looks like this:
@property(nonatomic, retain) BOOL myProperty NS_AVAILABLE_IOS(3_2);
When parsing this header file with Doxygen, it gets the type βBOOL mypropβ, the name βNS_AVAILABLE_IOSβ and the arguments as β(3_2)β.
Is there a way to get Doxygen to recognize this correctly without adding comments (I cannot modify the files)? Maybe this ignores the macro NS_AVAILABLE_IOS?
source share