UICollectionView在xcode16编译闪退问题

使用xcode15运行工程,控制台会出现如下提示:

Expected dequeued view to be returned to the collection view in preparation for display. When the collection view's data source is asked to provide a view for a given index path, ensure that a single view is dequeued and returned to the collection view. Avoid dequeuing views without a request from the collection view. For retrieving an existing view in the collection view, use -[UICollectionView cellForItemAtIndexPath:] or -[UICollectionView supplementaryViewForElementKind:atIndexPath:]. Dequeued view: <IQEngUICollectionViewCell: 0x130215e00; baseClass = UICollectionViewCell; frame = (396 0; 396 98.1547); clipsToBounds = YES; backgroundColor = UIExtendedGrayColorSpace 0 0; layer = <CALayer: 0x301e371a0>>; Collection view: <UICollectionView: 0x1300caa00; frame = (0 0; 396 98.1547); clipsToBounds = YES; gestureRecognizers = <NSArray: 0x300b706f0>; backgroundColor = <UIDynamicSystemColor: 0x3002a3380; name = systemBackgroundColor>; layer = <CALayer: 0x301d5a080>; contentOffset: {0, 0}; contentSize: {3168, 98.154666666666671}; adjustedContentInset: {0, 0, 0, 0}; layout: <IQEngCollectionViewFlowLayout: 0x1237e7480>; dataSource: IQEngCarouselView:<IQEngCarouselView: 0x130117e00; frame = (16 11.4133; 396 98.1547); clipsToBounds = YES; layer = <CALayer: 0x301d59f20>>> This will become an assert in a future version.

然后在xcode16运行是会直接闪退的,控制台会显示

*** Assertion failure in -[UICollectionView _updateVisibleCellsNow:], UICollectionView.m:5673

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Expected dequeued view to be returned to the collection view in preparation for display. When the collection view's data source is asked to provide a view for a given index path, ensure that a single view is dequeued and returned to the collection view. Avoid dequeuing views without a request from the collection view. For retrieving an existing view in the collection view, use -[UICollectionView cellForItemAtIndexPath:] or -[UICollectionView supplementaryViewForElementKind:atIndexPath:]. Dequeued view: <IQEngUICollectionViewCell: 0x1627b4780; baseClass = UICollectionViewCell; frame = (396 0; 396 98.1547); clipsToBounds = YES; backgroundColor = UIExtendedGrayColorSpace 0 0; layer = <CALayer: 0x302bc77a0>>; Collection view: <UICollectionView: 0x15fd0c000; frame = (0 0; 396 98.1547); clipsToBounds = YES; gestureRecognizers = <NSArray: 0x3030c4570>; backgroundColor = <UIDynamicSystemColor: 0x303a1f880; name = systemBackgroundColor>; layer = <CALayer: 0x302663260>; contentOffset: {0.33333333333333331, 0}; contentSize: {3168, 98.154666666666671}; adjustedContentInset: {0, 0, 0, 0}; layout: <IQEngCollectionViewFlowLayout: 0x15fb53480>; dataSource: IQEngCarouselView:<IQEngCarouselView: 0x15fcab800; frame = (16 11.4133; 396 98.1547); clipsToBounds = YES; layer = <CALayer: 0x3026630a0>>>'

问题原因在于,轮播图在自动轮播的时候调用的方法有问题

objectivec 复制代码
这个代码是有问题的    
UICollectionViewCell *cell = [self collectionView:self.collectionView cellForItemAtIndexPath:indexPath];
    CGFloat f1_minX = cell.frame.origin.x;
    CGPoint point = CGPointZero;
    point.x = f1_minX;
    CGPoint nextPoint = [self.collectionViewLayout targetContentOffsetForProposedContentOffset:point withScrollingVelocity:CGPointZero];
    [self.collectionView setContentOffset:nextPoint animated:animated];

将上面代码换成

objectivec 复制代码
    [self.collectionView scrollToItemAtIndexPath:indexPath
                                atScrollPosition:UICollectionViewScrollPositionLeft
                                        animated:animated];

可以解决问题

相关推荐
翔云API2 小时前
人脸识别API解锁智能生活、C++人脸识别接口软文
开发语言·数据库·c++·python·ios·php
胖虎14 小时前
高效处理 iOS 应用中的大规模礼物数据:以直播项目为例(1-礼物池)
ios·直播间·大数据处理·礼物面板
CaseyWei11 小时前
(转)Uni-app 之IOS生成Universal Link(通用链接)
ios·uni-app
名字不要太长 像我这样就好1 天前
【iOS】知乎日报总结
macos·ui·ios·objective-c·cocoa
gxhlh1 天前
iOS 系统中使用 webView 打印 html 的打印边距问题
前端·ios·html
Lsx-codeShare2 天前
Uniapp 安装安卓、IOS模拟器并调试
android·前端·javascript·ios·微信小程序·小程序·uni-app
Cedric_Anik2 天前
Swift——类与结构体
开发语言·ios·swift
码农--xc2 天前
iOS开发之修改已有项目的项目名和类名前缀
ios
AirDroid_cn2 天前
Vivo手机投屏到Windows笔记本电脑,支持多台手机投屏、共享音频!
android·windows·ios·ipad·手机投屏·手机使用技巧·手机投屏电脑