/* 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 #import #import @class ASCellNode; @protocol ASCollectionViewDataSource; @protocol ASCollectionViewDelegate; /** * Node-based collection view. * * ASCollectionView is a version of UICollectionView that uses nodes -- specifically, ASCellNode subclasses -- with asynchronous * pre-rendering instead of synchronously loading UICollectionViewCells. */ @interface ASCollectionView : UICollectionView @property (nonatomic, weak) id asyncDataSource; @property (nonatomic, weak) id asyncDelegate; /** * Tuning parameters for the working range. * * Defaults to a trailing buffer of one screenful and a leading buffer of two screenfuls. */ @property (nonatomic, assign) ASRangeTuningParameters rangeTuningParameters; /** * Reload everything from scratch, destroying the working range and all cached nodes. * * @warning This method is substantially more expensive than UICollectionView's version. */ - (void)reloadData; /** * WARNING: ASCollectionView's update/editing support is not yet implemented. Use of these methods will fire an assertion. * * This initial version of ASCollectionView only supports appending nodes (see below). If you'd like to see full-fledged * support for data source updates and interactive editing, please file a GitHub issue -- AsyncDisplayKit can do it, * we just haven't built it out yet. :] */ //- (void)insertSections:(NSIndexSet *)sections; //- (void)deleteSections:(NSIndexSet *)sections; //- (void)reloadSections:(NSIndexSet *)sections; //- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection; // //- (void)insertItemsAtIndexPaths:(NSArray *)indexPaths; //- (void)deleteItemsAtIndexPaths:(NSArray *)indexPaths; //- (void)reloadItemsAtIndexPaths:(NSArray *)indexPaths; //- (void)moveItemAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath; /** * Append nodes. * * As with UICollectionView, the asyncDataSource must be updated to reflect the new nodes before this method is called. * * @param indexPaths Ordered array of index paths corresponding to the nodes to be added. */ - (void)appendNodesWithIndexPaths:(NSArray *)indexPaths; /** * Query the sized node at `indexPath` for its calculatedSize. * * @param indexPath The index path for the node of interest. */ - (CGSize)calculatedSizeForNodeAtIndexPath:(NSIndexPath *)indexPath; @end /** * This is a node-based UICollectionViewDataSource. */ @protocol ASCollectionViewDataSource /** * Similar to -collectionView:cellForItemAtIndexPath:. * * @param collection The sender. * * @param indexPath The index path of the requested node. * * @returns a node for display at this indexpath. Must be thread-safe (can be called on the main thread or a background * queue) and should not implement reuse (it will be called once per row). Unlike UICollectionView's version, this method * is not called when the row is about to display. */ - (ASCellNode *)collectionView:(ASCollectionView *)collectionView nodeForItemAtIndexPath:(NSIndexPath *)indexPath; @end /** * This is a node-based UICollectionViewDelegate. */ @protocol ASCollectionViewDelegate @optional - (void)collectionView:(UICollectionView *)collectionView willDisplayNodeForItemAtIndexPath:(NSIndexPath *)indexPath; - (void)collectionView:(UICollectionView *)collectionView didEndDisplayingNodeForItemAtIndexPath:(NSIndexPath*)indexPath; @end