mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-02-02 09:06:58 +00:00
# Conflicts: # AsyncDisplayKit.xcodeproj/project.pbxproj # AsyncDisplayKit/ASCellNode+Internal.h # AsyncDisplayKit/ASCellNode.mm # AsyncDisplayKit/ASCollectionNode+Beta.h # AsyncDisplayKit/ASCollectionNode.mm # AsyncDisplayKit/ASCollectionView.mm # AsyncDisplayKit/ASCollectionViewProtocols.h # AsyncDisplayKit/ASDisplayNode.mm # AsyncDisplayKit/ASMultiplexImageNode.h # AsyncDisplayKit/ASMultiplexImageNode.mm # AsyncDisplayKit/ASNavigationController.m # AsyncDisplayKit/ASNetworkImageNode.mm # AsyncDisplayKit/ASPagerFlowLayout.m # AsyncDisplayKit/ASPagerNode.m # AsyncDisplayKit/ASTabBarController.m # AsyncDisplayKit/ASTableNode.h # AsyncDisplayKit/ASTableNode.mm # AsyncDisplayKit/ASTableView.mm # AsyncDisplayKit/ASTableViewProtocols.h # AsyncDisplayKit/ASVideoNode.h # AsyncDisplayKit/ASVideoNode.mm # AsyncDisplayKit/ASVideoPlayerNode.mm # AsyncDisplayKit/ASViewController.mm # AsyncDisplayKit/Debug/ASLayoutElementInspectorCell.m # AsyncDisplayKit/Debug/ASLayoutElementInspectorNode.m # AsyncDisplayKit/Details/ASBasicImageDownloader.mm # AsyncDisplayKit/Details/ASBatchContext.mm # AsyncDisplayKit/Details/ASChangeSetDataController.h # AsyncDisplayKit/Details/ASChangeSetDataController.mm # AsyncDisplayKit/Details/ASCollectionDataController.mm # AsyncDisplayKit/Details/ASCollectionViewLayoutController.mm # AsyncDisplayKit/Details/ASCollectionViewLayoutInspector.m # AsyncDisplayKit/Details/ASDataController.mm # AsyncDisplayKit/Details/ASFlowLayoutController.h # AsyncDisplayKit/Details/ASFlowLayoutController.mm # AsyncDisplayKit/Details/ASIndexedNodeContext.mm # AsyncDisplayKit/Details/ASPhotosFrameworkImageRequest.h # AsyncDisplayKit/Details/ASPhotosFrameworkImageRequest.m # AsyncDisplayKit/Details/ASRangeController.mm # AsyncDisplayKit/Details/ASRangeControllerUpdateRangeProtocol+Beta.h # AsyncDisplayKit/Details/ASSectionContext.h # AsyncDisplayKit/Private/ASBatchFetching.m # AsyncDisplayKit/Private/ASCollectionView+Undeprecated.h # AsyncDisplayKit/Private/ASCollectionViewFlowLayoutInspector.h # AsyncDisplayKit/Private/ASCollectionViewFlowLayoutInspector.m # AsyncDisplayKit/Private/ASDisplayNode+UIViewBridge.mm # AsyncDisplayKit/Private/_ASPendingState.mm # examples/SocialAppLayout-Inverted/Sample.xcodeproj/xcshareddata/xcschemes/Sample.xcscheme
67 lines
4.5 KiB
Objective-C
67 lines
4.5 KiB
Objective-C
//
|
|
// ASCollectionViewProtocols.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// 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.
|
|
//
|
|
|
|
#ifndef MINIMAL_ASDK
|
|
#import <UIKit/UIKit.h>
|
|
#import <AsyncDisplayKit/ASBaseDefines.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* This is a subset of UICollectionViewDataSource.
|
|
*
|
|
* @see ASCollectionDataSource
|
|
*/
|
|
@protocol ASCommonCollectionDataSource <NSObject>
|
|
|
|
@optional
|
|
|
|
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section ASDISPLAYNODE_DEPRECATED_MSG("Implement -collectionNode:numberOfItemsInSection: instead.");
|
|
|
|
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView ASDISPLAYNODE_DEPRECATED_MSG("Implement -numberOfSectionsInCollectionNode: instead.");
|
|
|
|
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement - collectionNode:nodeForSupplementaryElementOfKind:atIndexPath: instead.");
|
|
|
|
@end
|
|
|
|
|
|
/**
|
|
* This is a subset of UICollectionViewDelegate.
|
|
*
|
|
* @see ASCollectionDelegate
|
|
*/
|
|
@protocol ASCommonCollectionDelegate <NSObject, UIScrollViewDelegate>
|
|
|
|
@optional
|
|
|
|
- (UICollectionViewTransitionLayout *)collectionView:(UICollectionView *)collectionView transitionLayoutForOldLayout:(UICollectionViewLayout *)fromLayout newLayout:(UICollectionViewLayout *)toLayout;
|
|
|
|
- (void)collectionView:(UICollectionView *)collectionView willDisplaySupplementaryView:(UICollectionReusableView *)view forElementKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement -collectionNode:willDisplaySupplementaryView:forElementKind:atIndexPath: instead.");
|
|
- (void)collectionView:(UICollectionView *)collectionView didEndDisplayingSupplementaryView:(UICollectionReusableView *)view forElementOfKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement -collectionNode:didEndDisplayingSupplementaryView:forElementKind:atIndexPath: instead.");
|
|
|
|
- (BOOL)collectionView:(UICollectionView *)collectionView shouldHighlightItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:shouldHighlightItemAtIndexPath: instead.");
|
|
- (void)collectionView:(UICollectionView *)collectionView didHighlightItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:didHighlightItemAtIndexPath: instead.");
|
|
- (void)collectionView:(UICollectionView *)collectionView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:didUnhighlightItemAtIndexPath: instead.");
|
|
|
|
- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:shouldSelectItemAtIndexPath: instead.");
|
|
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:didSelectItemAtIndexPath: instead.");
|
|
- (BOOL)collectionView:(UICollectionView *)collectionView shouldDeselectItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:shouldDeselectItemAtIndexPath: instead.");
|
|
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:didDeselectItemAtIndexPath: instead.");
|
|
|
|
- (BOOL)collectionView:(UICollectionView *)collectionView shouldShowMenuForItemAtIndexPath:(NSIndexPath *)indexPath ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:shouldShowMenuForItemAtIndexPath: instead.");
|
|
- (BOOL)collectionView:(UICollectionView *)collectionView canPerformAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(nullable id)sender ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:canPerformAction:forItemAtIndexPath:withSender: instead.");
|
|
- (void)collectionView:(UICollectionView *)collectionView performAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(nullable id)sender ASDISPLAYNODE_DEPRECATED_MSG("Implement collectionNode:performAction:forItemAtIndexPath:withSender: instead.");
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#endif
|