mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-08 13:42:51 +00:00
25 lines
991 B
Objective-C
25 lines
991 B
Objective-C
//
|
|
// ASCollectionInternal.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Scott Goodson on 1/1/16.
|
|
//
|
|
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under the BSD-style license found in the
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
//
|
|
|
|
#import "ASCollectionView.h"
|
|
#import "ASCollectionNode.h"
|
|
#import "ASDataController.h"
|
|
#import "ASRangeController.h"
|
|
|
|
@interface ASCollectionView ()
|
|
- (instancetype)_initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout layoutFacilitator:(id<ASCollectionViewLayoutFacilitatorProtocol>)layoutFacilitator ownedByNode:(BOOL)ownedByNode;
|
|
|
|
@property (nonatomic, weak, readwrite) ASCollectionNode *collectionNode;
|
|
@property (nonatomic, strong, readonly) ASDataController *dataController;
|
|
@property (nonatomic, strong, readonly) ASRangeController *rangeController;
|
|
@end
|