mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-11 17:00:02 +00:00
23 lines
511 B
Objective-C
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
|