From 4ce6820efb45424e4abc3aca080a6b099f3e4a4a Mon Sep 17 00:00:00 2001 From: Nadine Salter Date: Fri, 17 Oct 2014 15:53:11 -0700 Subject: [PATCH] [appledoc] Document ASCellNode. --- AsyncDisplayKit/ASCellNode.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/AsyncDisplayKit/ASCellNode.h b/AsyncDisplayKit/ASCellNode.h index 91164598b1..8308502335 100644 --- a/AsyncDisplayKit/ASCellNode.h +++ b/AsyncDisplayKit/ASCellNode.h @@ -8,15 +8,24 @@ #import +/** + * Generic cell node. Subclass ASCellNode instead of to use . + */ @interface ASCellNode : ASDisplayNode -// TODO expose some UITableViewCell things for configuration, eg, separator style +// TODO expose some UITableViewCell properties for configuration, eg, separator style @end +/** + * Simple label-style cell node. Read its source for an example of custom s. + */ @interface ASTextCellNode : ASCellNode +/** + * Text to display. + */ @property (nonatomic, copy) NSString *text; @end