Swiftgram/examples/CatDealsCollectionView/Sample/ASDisplayNode+CatDeals.h
Adlai Holler 6e7cdea797
Add extension points for global node behaviors, potentially replacing interface state delegates (#1229)
* Add extension points for global node behaviors via categories and a public ivar

* Update documentation on context ivar
2019-02-14 14:17:03 -08:00

20 lines
377 B
Objective-C

//
// ASDisplayNode+CatDeals.h
// Sample
//
// Copyright (c) Pinterest, Inc. All rights reserved.
// Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
//
#import <AsyncDisplayKit/ASDisplayNode+Subclasses.h>
NS_ASSUME_NONNULL_BEGIN
@interface ASDisplayNode (CatDeals)
@property (nullable, copy) NSString *catsLoggingID;
@end
NS_ASSUME_NONNULL_END