我创建了一个以块为参数的方法。该块需要一些参数,所以我想像 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;
但很明显,这只会在文档中出现:
我如何获得data
并fields
显示像 Apple 的方法一样缩进,该方法采用带参数的块?
我在Apple 的 HeaderDoc 文档中找不到如何执行此操作