3

我创建了一个以块为参数的方法。该块需要一些参数,所以我想像 Apple 在他们的具有相似格式的方法中那样缩进文档......

在此处输入图像描述

一个简单的例子是:

/** Loads a project from web service.
 @param securityKey The security key.
 @param block The block to execute after the web service returned all data. The block takes five arguments:
     @param data The data.
     @param fields Some fields.
*/
- (void)loadProjectWithSecurityKey:(NSString *)securityKey andCompletion:(void(^)(NSDictionary *data, NSDictionary *fields))completion;

但很明显,这只会在文档中出现:

在此处输入图像描述

我如何获得datafields显示像 Apple 的方法一样缩进,该方法采用带参数的块?

我在Apple 的 HeaderDoc 文档中找不到如何执行此操作

4

1 回答 1

2

您可以使用:

@param block My block with the following parameters: 
<table>
<tr>
  <td><tt>myParam</tt></td>
  <td>Description</td>
</tr>
</table>
于 2016-02-25T00:27:21.490 回答