Update containers-asviewcontroller.md

This commit is contained in:
Hannah Troisi
2016-04-18 23:15:53 -07:00
parent fe4a55ab30
commit aea2935704

View File

@@ -15,7 +15,7 @@ More features will be added over time, so it is a good idea to base your view co
A `UIViewController` provides a view of its own. An `ASViewController` is assigned a node to manage in its designated initializer `initWithNode:`.
Consider the following `ASViewController` subclass from the <a href="https://github.com/facebook/AsyncDisplayKit/tree/master/examples/ASDKgram">ASDKgram sample app</a> that would like to use a table node as its managed node.
Consider the following `ASViewController` subclass `PhotoFeedNodeController` from the <a href="https://github.com/facebook/AsyncDisplayKit/tree/master/examples/ASDKgram">ASDKgram sample app</a> that would like to use a table node as its managed node.
This table node is assigned to the `ASViewController` in its `initWithNode:` designated initializer method.