05.ASDK整理:ASViewController使用注意

不能直接

ASViewController *testvc =
            [[ASViewController alloc] init];

需要初始化指定一个DisplayNode,所以创建一个控制器继承 ASViewController,然后初始化。

- (instancetype)init {
  DDLogDebug(@"%s", __PRETTY_FUNCTION__);

  self = [super initWithNode:[[ASDisplayNode alloc] init]];
  if (self) {
    _menuDisplayNode = self.node;
  }
  return self;
} 

你可能感兴趣的:(05.ASDK整理:ASViewController使用注意)