What is the proper way to comment methods for Objective-C? For example, in .Net I would add a xml comment like:
/// <summary>
/// Summary of method
/// </summary>
/// <param name="FileName">The document's original filename.</param>
/// <returns>Decoded filename</returns>
Is there an equivalent for Objective-C?