我注意到 Xcode 5 现在会自动解析方法文档。例如:
/**
Fetches a conversation with user.
@param user The other user in the conversation.
@return A conversation
*/
+ (Conversation *)conversationWithUser:(User *)user;
它支持多个@
令牌(不知道如何调用它们)。例如:
@warning
@note
但是,我仍然没有找到一种方法或这是什么格式,以便我可以添加粗体文本、斜体或链接。
有谁知道这是什么文档格式?