mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-22 16:58:23 +00:00
Summary: Updated the main project lib settings for iOS 11, fixed all errors (which are from warnings-as-errors). - [x] All tests pass. Demo project builds and runs. - [x] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. Closes https://github.com/Instagram/IGListKit/pull/942 Differential Revision: D6161473 Pulled By: rnystrom fbshipit-source-id: 1fd51d8805f9c6483942b44d750b2756efde9376
31 lines
1.1 KiB
Objective-C
31 lines
1.1 KiB
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 <Foundation/Foundation.h>
|
|
|
|
#import <IGListKit/IGListMacros.h>
|
|
|
|
@class IGListMoveIndexPath;
|
|
@class IGListReloadIndexPath;
|
|
|
|
IGLK_SUBCLASSING_RESTRICTED
|
|
@interface IGListBatchUpdates : NSObject
|
|
|
|
@property (nonatomic, strong, readonly) NSMutableIndexSet *sectionReloads;
|
|
@property (nonatomic, strong, readonly) NSMutableArray<NSIndexPath *> *itemInserts;
|
|
@property (nonatomic, strong, readonly) NSMutableArray<NSIndexPath *> *itemDeletes;
|
|
@property (nonatomic, strong, readonly) NSMutableArray<IGListReloadIndexPath *> *itemReloads;
|
|
@property (nonatomic, strong, readonly) NSMutableArray<IGListMoveIndexPath *> *itemMoves;
|
|
|
|
@property (nonatomic, strong, readonly) NSMutableArray<void (^)(void)> *itemUpdateBlocks;
|
|
@property (nonatomic, strong, readonly) NSMutableArray<void (^)(BOOL)> *itemCompletionBlocks;
|
|
|
|
- (BOOL)hasChanges;
|
|
|
|
@end
|