Update comments with correct symbol names (#11).

* ASDisplayNodeAsyncView -> _ASDisplayView
* ASDisplayNodeView -> ASDisplayNodeViewProperties
This commit is contained in:
Nadine Salter 2014-07-30 15:59:01 -07:00
parent 11eb47c87e
commit 07a538a2dc
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
- (id)init;
// Alternative initializer. Provide any UIView subclass, such as UIScrollView, and the ASDisplayNode's view will be of that type.
// If viewClass is not a subclass of ASDisplayNodeAsyncView, it will still render synchronously and -layout and touch handling methods on the node will not be called.
// If viewClass is not a subclass of _ASDisplayView, it will still render synchronously and -layout and touch handling methods on the node will not be called.
// The view instance will be created with alloc/init.
- (id)initWithViewClass:(Class)viewClass;

View File

@ -22,7 +22,7 @@
@interface _ASPendingState : NSObject <ASDisplayNodeViewProperties, ASDisplayProperties>
// Supports all of the properties included the ASDisplayNodeView protocol
// Supports all of the properties included in the ASDisplayNodeViewProperties protocol
- (void)applyToView:(UIView *)view;
- (void)applyToLayer:(CALayer *)layer;