Reputation: 2499
I've always documented my code with doxygen //! @brief
comments because Xcode, when autocompleting, showed the documentation of methods and variables.
Is this feature available as an option in Xcode 8?
Upvotes: 0
Views: 176
Reputation: 457
Apple seems to have dropped for support for DOxygen & HeaderDoc style document comments, for the new Swift style comments.
"@param name comment" has been replaced with "- Parameter name: comment". Same for calls to Returns, Throws & other calls. The @brief & @description has been removed completely.
Unless someone else has found a way to do this?
Upvotes: 1