Optimize string handling for CALayer gravity & UIView content mode. Finally fix protocol rename.

This commit is contained in:
Scott Goodson
2015-12-24 23:13:50 -08:00
parent f902b4bdc7
commit 4ca97e2f4d
2 changed files with 14 additions and 22 deletions

View File

@@ -277,7 +277,6 @@
/**
* This is a node-based UITableViewDataSource.
*/
#define ASTableViewDataSource ASTableDataSource
@protocol ASTableDataSource <ASCommonTableViewDataSource, NSObject>
/**
@@ -315,6 +314,8 @@
@end
@protocol ASTableViewDataSource <ASTableDataSource>
@end
/**
* This is a node-based UITableViewDelegate.
@@ -322,7 +323,6 @@
* Note that -tableView:heightForRowAtIndexPath: has been removed; instead, your custom ASCellNode subclasses are
* responsible for deciding their preferred onscreen height in -calculateSizeThatFits:.
*/
#define ASTableViewDelegate ASTableDelegate
@protocol ASTableDelegate <ASCommonTableViewDelegate, NSObject>
@optional
@@ -357,4 +357,7 @@
*/
- (BOOL)shouldBatchFetchForTableView:(ASTableView *)tableView;
@end
@end
@protocol ASTableViewDelegate <ASTableDelegate>;
@end