Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit c96813c

Browse files
committed
Merge pull request #760 from levi/patch-4
Call UIViewController's designated initializer in ASViewController
2 parents a1dee22 + 0972c56 commit c96813c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AsyncDisplayKit/ASViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ @implementation ASViewController
2020

2121
- (instancetype)initWithNode:(ASDisplayNode *)node
2222
{
23-
if (!(self = [super init])) {
23+
if (!(self = [super initWithNibName:nil bundle:nil])) {
2424
return nil;
2525
}
2626

0 commit comments

Comments
 (0)