tomaz / appledoc

Objective-c code Apple style documentation set generator.
http://gentlebytes.com
4.19k stars 645 forks source link

[Objective-C] Method declaration shows only the first parameter in declaration #591

Open ZinNyeinOo opened 8 years ago

ZinNyeinOo commented 8 years ago

I have an Objective-C project for which I'm generating documentation with appledoc. But I encountered the following problem. When a method has multiple parameters, only the first parameter is shown in method declaration part of generated document. The following is my method.

**
 * @brief Method to initialize
 *
 * @param uId User Id
 * @param key Key
 * @param logLevel Logging level
 *
 * @return None
 */
- (void)initWithUserInfo:(NSString *)uId :(NSString *)key :(int)logLevel;

And what I get in the documentation is as below.

Method to initialize

- (instancetype)initWithUserInfo:(NSString *)uId :

Am I missing something here?