For property and method declarations I want to use XCode 5's new document parsing to get documentation for the comment at the end of the line, but nothing I have tried seems to have worked.
None of these work:
- (BOOL)open; /**< @Returns NO if already open */
- (BOOL)open; /*!< @Returns NO if already open */
- (BOOL)open; //!< @Returns NO if already open
//!<
- (BOOL)open; ///< @Returns NO if already open
///<
But putting the documenation before the method does seem to work
/**
@Returns NO if already open
*/
- (BOOL)open;
Is it possible in XCode 5 to document on the same line?