mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 06:58:26 +00:00
Summary: The standardized Meta copyright notice is "Copyright (c) Meta Platforms, Inc. and affiliates." and not "Copyright (c) Meta Platforms, Inc. and its affiliates." (Dropping the "its") This diff updates the copyright notice in each source file to the correct this. Reviewed By: willbailey Differential Revision: D44737667 fbshipit-source-id: 643bf36df76723e70d9d826c53cf8f29b8a0c8cc
33 lines
1 KiB
Objective-C
33 lines
1 KiB
Objective-C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <IGListDiffKit/IGListDiffable.h>
|
|
|
|
@interface IGSectionObject : NSObject <IGListDiffable>
|
|
|
|
@property (nonatomic, copy) NSArray *objects;
|
|
|
|
+ (instancetype)sectionWithObjects:(NSArray *)objects;
|
|
|
|
+ (instancetype)sectionWithObjects:(NSArray *)objects identifier:(NSString *)identifier;
|
|
|
|
/**
|
|
@param usesIdentifierForDiffable YES if we only use the `identifier` for -isEqualToDiffableObject. NO then we compares both the `identifier` as well as `objects`.
|
|
*/
|
|
+ (instancetype)sectionWithObjects:(NSArray *)objects identifier:(NSString *)identifier usesIdentifierForDiffable:(BOOL)usesIdentifierForDiffable;
|
|
|
|
@end
|
|
|
|
@interface IGListTestUICollectionViewDataSource : NSObject <UICollectionViewDataSource>
|
|
|
|
@property (nonatomic, copy) NSArray <IGSectionObject *> *sections;
|
|
|
|
- (instancetype)initWithCollectionView:(UICollectionView *)collectionView;
|
|
|
|
@end
|