UICollectionView。它以前在 iOS17 中运行良好,但现在在使用 Xcode 16 / iOS18 beta 运行时崩溃了:
以前代码关于cell代码,是cell代理方法 ,根据条件 多次进行了dequeueReusableCellWithReuseIdentifier,改成if else if else 即可。就是一种情况,只进行一次dequeueReusableCellWithReuseIdentifier,假设说有个基类的cell
BaseCell* cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"CRSongSeatCell" forIndexPath:indexPath];
if(条件1){
cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"ChildCell" forIndexPath:indexPath];
}
return cell;
以前这样写不会崩溃,但是在Xcode 16 运行会崩溃。
一般 出现在 多个cell场景下。
bitcode 报错这个,至今未解决,记录一下,避免后面忘记。