mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-16 05:48:18 +00:00
Summary: Removing the `IGListSectionType` protocol and adding default implementations into `IGListSectionController`. - `numberOfItems` returns 1 - `cellForItemAtIndex:` asserts (have to return a cell) - `didUpdateToObject:` no-ops - `didSelectItemAtIndex:` no-ops Fixes #168 Reviewed By: jessesquires Differential Revision: D4909585 fbshipit-source-id: 8816702504e3fc0683868914ff4dd20e4af7c166
45 lines
1.4 KiB
Objective-C
45 lines
1.4 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 <UIKit/UIKit.h>
|
|
|
|
@class IGListAdapter;
|
|
@class IGListSectionController;
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
Implement this protocol to receive working range events for a list.
|
|
|
|
The working range is a range *near* the viewport in which you can begin preparing content for display. For example,
|
|
you could begin decoding images, or warming text caches.
|
|
*/
|
|
@protocol IGListWorkingRangeDelegate <NSObject>
|
|
|
|
/**
|
|
Notifies the delegate that an section controller will enter the working range.
|
|
|
|
@param listAdapter The adapter controlling the list.
|
|
@param sectionController The section controller entering the range.
|
|
*/
|
|
- (void)listAdapter:(IGListAdapter *)listAdapter sectionControllerWillEnterWorkingRange:(IGListSectionController *)sectionController;
|
|
|
|
/**
|
|
Notifies the delegate that an section controller exited the working range.
|
|
|
|
@param listAdapter The adapter controlling the list.
|
|
@param sectionController The section controller that exited the range.
|
|
*/
|
|
- (void)listAdapter:(IGListAdapter *)listAdapter sectionControllerDidExitWorkingRange:(IGListSectionController *)sectionController;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|