I have a definition on 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 as "BOOL myprop", the name as "NS_AVAILABLE_IOS" and the arguments as "(3_2)".
Is there any way of making Doxygen recognize this properly without adding comments (I can't modify the files)? Maybe making it ignore the NS_AVAILABLE_IOS macro?