appledoc icon indicating copy to clipboard operation
appledoc copied to clipboard

Do not create cross-ref links to undocumented members

Open LearnCocos2D opened this issue 11 years ago • 0 comments

Following interface fragment will cause the "execute" word to generate a link to the undocumented method execute:

/**
 *  Initializes the action
 *
 *  @param block Block to execute.
 *
 *  @return An initialized call block action.
 */
- (id)initWithBlock:(void(^)())block;

// Executes the selector on the specific target.
- (void)execute;

Since execute is not documented appledoc should refrain from linking to it.

LearnCocos2D avatar Nov 26 '14 12:11 LearnCocos2D