[appledoc] Document ASCellNode.

This commit is contained in:
Nadine Salter
2014-10-17 15:53:11 -07:00
parent 9225309c9a
commit 4ce6820efb

View File

@@ -8,15 +8,24 @@
#import <AsyncDisplayKit/ASDisplayNode.h>
/**
* Generic cell node. Subclass ASCellNode instead of <ASDisplayNode> to use <ASTableView>.
*/
@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 <ASCellNode>s.
*/
@interface ASTextCellNode : ASCellNode
/**
* Text to display.
*/
@property (nonatomic, copy) NSString *text;
@end