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