mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-20 07:48:32 +00:00
Summary: * IGListCollectionView passes update information to IGListCollectionViewLayout. Reviewed By: rnystrom Differential Revision: D6510139 fbshipit-source-id: ada194d009eca7f308887ec592ecc41fb9557855
20 lines
550 B
Objective-C
20 lines
550 B
Objective-C
/**
|
|
* Copyright (c) 2016-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 <UIKit/UIKit.h>
|
|
|
|
#define genLayoutTestItem(s) [[IGLayoutTestItem alloc] initWithSize:s]
|
|
|
|
@interface IGLayoutTestItem : NSObject
|
|
|
|
@property (nonatomic, assign, readonly) CGSize size;
|
|
|
|
- (instancetype)initWithSize:(CGSize)size;
|
|
|
|
@end
|