tableView only

This commit is contained in:
Hannah Trosi
2016-11-17 15:18:55 +09:00
parent df7c2b6d96
commit c9143fb5df
2 changed files with 5 additions and 2 deletions

View File

@@ -38,8 +38,8 @@ NS_ASSUME_NONNULL_BEGIN
/// The corresponding table node, or nil if one does not exist. /// The corresponding table node, or nil if one does not exist.
@property (nonatomic, weak, readonly) ASTableNode *tableNode; @property (nonatomic, weak, readonly) ASTableNode *tableNode;
@property (nonatomic, weak) id<ASTableDelegate> asyncDelegate; @property (nonatomic, weak) id<ASTableDelegate> asyncDelegate ASDISPLAYNODE_DEPRECATED_MSG("Use ASTableNode's .delegate property instead.");
@property (nonatomic, weak) id<ASTableDataSource> asyncDataSource; @property (nonatomic, weak) id<ASTableDataSource> asyncDataSource ASDISPLAYNODE_DEPRECATED_MSG("Use ASTableNode .dataSource property instead.");
/** /**
* Retrieves the node for the row at the given index path. * Retrieves the node for the row at the given index path.

View File

@@ -19,6 +19,9 @@ NS_ASSUME_NONNULL_BEGIN
*/ */
@interface ASTableView (Undeprecated) @interface ASTableView (Undeprecated)
@property (nonatomic, weak) id<ASTableDelegate> asyncDelegate;
@property (nonatomic, weak) id<ASTableDataSource> asyncDataSource;
/** /**
* Initializer. * Initializer.
* *