Switch Tests to use ASRangeControllerBeta. Use NSSet instead of NSMutableSet.

This commit is contained in:
Scott Goodson
2016-01-05 23:29:11 -08:00
parent d1c3894dbb
commit bbfd08829f
3 changed files with 18 additions and 9 deletions

View File

@@ -7,10 +7,14 @@
*/
#import "AppDelegate.h"
#import <AsyncDisplayKit/ASDisplayNode.h>
#import <AsyncDisplayKit/ASDisplayNode+Beta.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[ASDisplayNode setShouldUseNewRenderingRange:YES];
return YES;
}