mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
[appledoc] Document ASCellNode.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user