Swiftgram/Source/Details/_ASCollectionViewCell.h

23 lines
511 B
Objective-C

//
// _ASCollectionViewCell.h
// AsyncDisplayKit
//
// Created by Adlai Holler on 1/30/17.
// Copyright © 2017 Facebook. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AsyncDisplayKit/ASBaseDefines.h>
@class ASCellNode;
NS_ASSUME_NONNULL_BEGIN
AS_SUBCLASSING_RESTRICTED
@interface _ASCollectionViewCell : UICollectionViewCell
@property (nonatomic, weak) ASCellNode *node;
@property (nonatomic, strong, nullable) UICollectionViewLayoutAttributes *layoutAttributes;
@end
NS_ASSUME_NONNULL_END