--- title: ASViewController layout: docs permalink: /docs/containers-asviewcontroller.html prevPage: faq.html nextPage: containers-asnodecontroller.html --- `ASViewController` is a subclass of `UIViewController` that adds several useful features for hosting `ASDisplayNode` hierarchies. An `ASViewController` can be used in place of any `UIViewController` - including within a `UINavigationController`, `UITabBarController` and `UISplitViewController` or as a modal view controller. Benefits of using an `ASViewController`:
ASViewController
that goes off screen will automatically reduce the size of the fetch data and display ranges of any of its children. This is key for memory management in large applications. ASVisibility
Feature. When used in an ASNavigationController
or ASTabBarController
, these classes know the exact number of user taps it would take to make the view controller visible.
- (instancetype)init
{
_tableNode = [[ASTableNode alloc] initWithStyle:UITableViewStylePlain];
self = [super initWithNode:_tableNode];
if (self) {
_tableNode.dataSource = self;
_tableNode.delegate = self;
}
return self;
}
ASViewController
. That is to say, even if you don't use ASViewController
's designated initializer -initWithNode:
, and only use the ASViewController
in the manner of a traditional UIViewController
, this will give you the additional node support if you choose to adopt it in different areas your application.