cdts/xdts-ios 3/TreeHole/CYHResetCode/CYH/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m

125 lines
5.1 KiB
Mathematica
Raw Permalink Normal View History

2023-07-27 09:20:00 +08:00
/**
* Tencent is pleased to support the open source community by making QMUI_iOS available.
* Copyright (C) 2016-2021 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
//
// UICollectionView+QMUI.m
// qmui
//
// Created by QMUI Team on 15/7/20.
//
#import "UICollectionView+QMUI.h"
#import "QMUICore.h"
#import "QMUILog.h"
@implementation UICollectionView (QMUI)
+ (void)load {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
// release indexPath crash
OverrideImplementation([UICollectionView class], @selector(scrollToItemAtIndexPath:atScrollPosition:animated:), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
return ^(UICollectionView *selfObject, NSIndexPath *indexPath, UICollectionViewScrollPosition scrollPosition, BOOL animated) {
// UIDatePicker indexPath nil scroll
BOOL isUIKitClass = [NSStringFromClass(selfObject.superview.class) hasPrefix:@"_UIDatePickerCalendar"];
if (!isUIKitClass) {
BOOL isIndexPathLegal = YES;
NSInteger numberOfSections = [selfObject numberOfSections];
if (indexPath.section >= numberOfSections) {
isIndexPathLegal = NO;
} else {
NSInteger items = [selfObject numberOfItemsInSection:indexPath.section];
if (indexPath.item >= items) {
isIndexPathLegal = NO;
}
}
if (!isIndexPathLegal) {
QMUIAssert(NO, @"UICollectionView (QMUI)", @"%@ - target indexPath : %@ 不合法的indexPath。\n%@", selfObject, indexPath, [NSThread callStackSymbols]);
return;
}
}
// call super
void (*originSelectorIMP)(id, SEL, NSIndexPath *, UICollectionViewScrollPosition, BOOL);
originSelectorIMP = (void (*)(id, SEL, NSIndexPath *, UICollectionViewScrollPosition, BOOL))originalIMPProvider();
originSelectorIMP(selfObject, originCMD, indexPath, scrollPosition, animated);
};
});
});
}
- (void)qmui_clearsSelection {
NSArray *selectedItemIndexPaths = [self indexPathsForSelectedItems];
for (NSIndexPath *indexPath in selectedItemIndexPaths) {
[self deselectItemAtIndexPath:indexPath animated:YES];
}
}
- (void)qmui_reloadDataKeepingSelection {
NSArray *selectedIndexPaths = [self indexPathsForSelectedItems];
[self reloadData];
for (NSIndexPath *indexPath in selectedIndexPaths) {
[self selectItemAtIndexPath:indexPath animated:NO scrollPosition:UICollectionViewScrollPositionNone];
}
}
/// viewcellnil
- (UICollectionViewCell *)parentCellForView:(UIView *)view {
if (!view.superview) {
return nil;
}
if ([view.superview isKindOfClass:[UICollectionViewCell class]]) {
return (UICollectionViewCell *)view.superview;
}
return [self parentCellForView:view.superview];
}
- (NSIndexPath *)qmui_indexPathForItemAtView:(id)sender {
if (sender && [sender isKindOfClass:[UIView class]]) {
UIView *view = (UIView *)sender;
UICollectionViewCell *parentCell = [self parentCellForView:view];
if (parentCell) {
return [self indexPathForCell:parentCell];
}
}
return nil;
}
- (BOOL)qmui_itemVisibleAtIndexPath:(NSIndexPath *)indexPath {
NSArray *visibleItemIndexPaths = self.indexPathsForVisibleItems;
for (NSIndexPath *visibleIndexPath in visibleItemIndexPaths) {
if ([indexPath isEqual:visibleIndexPath]) {
return YES;
}
}
return NO;
}
- (NSArray<NSIndexPath *> *)qmui_indexPathsForVisibleItems {
NSArray<NSIndexPath *> *visibleItems = [self indexPathsForVisibleItems];
NSSortDescriptor *sectionSorter = [[NSSortDescriptor alloc] initWithKey:@"section" ascending:YES];
NSSortDescriptor *rowSorter = [[NSSortDescriptor alloc] initWithKey:@"item" ascending:YES];
visibleItems = [visibleItems sortedArrayUsingDescriptors:[NSArray arrayWithObjects:sectionSorter, rowSorter, nil]];
return visibleItems;
}
- (NSIndexPath *)qmui_indexPathForFirstVisibleCell {
NSArray *visibleIndexPaths = [self qmui_indexPathsForVisibleItems];
if (!visibleIndexPaths || visibleIndexPaths.count <= 0) {
return nil;
}
return visibleIndexPaths.firstObject;
}
@end