- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
实现
我想在 UICollectionView
中拥有两种不同的项目大小。因此我已经实现了
UICollectionViewDelegateFlowLayout
的 collectionView(_:layout:sizeForItemAt:)
。
但我遇到的问题是,每当我在此函数中访问 collectionViewLayout.collectionViewContentSize
时,我的应用程序都会崩溃并出现异常。
异常(exception)情况如下:
* Terminating app due to uncaught exception 'NSRangeException', reason: '* -[__NSArrayM objectAtIndexedSubscript:]: index 1 beyond bounds [0 .. 0]'.
抛出调用堆栈位于帖子底部。
看来是SDK的内部问题,可能是某些东西没有正确初始化!?
任何人都可以确认此错误或告诉我我做错了什么吗?
这是我对 UICollectionViewDelegateFlowLayout
的实现:
class TwoSizesCellFlowLayout: NSObject, UICollectionViewDelegateFlowLayout {
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let layoutSize = collectionViewLayout.collectionViewContentSize // CRASHES when accessing `collectionViewContentSize`
// SDK error?
let layoutSize = collectionView.contentSize // works but results in slightly different size
var size = layoutSize.width / 2
if let flowLayout = collectionViewLayout as? UICollectionViewFlowLayout {
size = size - flowLayout.minimumInteritemSpacing / 2
}
return CGSize(width: size, height: size)
}
}
在 Collection View Controller 子类中,我将 TwoSizesCellFlowLayout
对象分配给 UICollectionViewController
的 delegate
属性:
class ViewController: UICollectionViewController {
...
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
collectionView?.dataSource = self
collectionView?.delegate = collectionViewDelegateAndLayout
let nib = UINib.init(nibName: "BasicCollectionViewCell", bundle: nil)
collectionView?.register(nib, forCellWithReuseIdentifier: cellIdentifier)
// accessing `collectionViewContentSize` here works like a charm, but only one size for all items is possible
// let collectionViewSize = collectionView?.collectionViewLayout.collectionViewContentSize
// if let collectionSize = collectionViewSize, let flowLayout = collectionView?.collectionViewLayout as? UICollectionViewFlowLayout {
// let size = collectionSize.width / 2 - flowLayout.minimumInteritemSpacing / 2
// let cellSize = CGSize(width: size, height: size)
// flowLayout.itemSize = cellSize
// }
}
...
}
0 CoreFoundation 0x00000001117751e6 __exceptionPreprocess + 294
1 libobjc.A.dylib 0x000000010d946031 objc_exception_throw + 48
2 CoreFoundation 0x00000001117b50bc _CFThrowFormattedException + 194
3 CoreFoundation 0x00000001117a67b1 -[__NSArrayM objectAtIndexedSubscript:] + 177
4 UIKit 0x000000010ecf2957 -[UICollectionViewFlowLayout _getSizingInfosWithExistingSizingDictionary:] + 1801
5 UIKit 0x000000010ecf47db -[UICollectionViewFlowLayout _fetchItemsInfoForRect:] + 136
6 UIKit 0x000000010eced70a -[UICollectionViewFlowLayout collectionViewContentSize] + 66
7 _blackened_ 0x000000010d28812f _T07beSmart22TwoSizesCellFlowLayoutC14collectionViewSC6CGSizeVSo012UICollectionI0C_So0kiG0C6layout10Foundation9IndexPathV13sizeForItemAttF + 79
8 _blackened_ 0x000000010d2882fa _T07beSmart22TwoSizesCellFlowLayoutC14collectionViewSC6CGSizeVSo012UICollectionI0C_So0kiG0C6layout10Foundation9IndexPathV13sizeForItemAttFTo + 122
9 UIKit 0x000000010ecf2e50 -[UICollectionViewFlowLayout _getSizingInfosWithExistingSizingDictionary:] + 3074
10 UIKit 0x000000010ecf47db -[UICollectionViewFlowLayout _fetchItemsInfoForRect:] + 136
11 UIKit 0x000000010eced104 -[UICollectionViewFlowLayout prepareLayout] + 272
12 UIKit 0x000000010ed1a0a9 -[UICollectionViewData _prepareToLoadData] + 156
13 UIKit 0x000000010ed1a956 -[UICollectionViewData validateLayoutInRect:] + 53
14 UIKit 0x000000010ecb0620 -[UICollectionView layoutSubviews] + 260
15 UIKit 0x000000010e2b17a8 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1515
16 QuartzCore 0x0000000114d45456 -[CALayer layoutSublayers] + 177
17 QuartzCore 0x0000000114d49667 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 395
18 QuartzCore 0x0000000114cd00fb _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 343
19 QuartzCore 0x0000000114cfd79c _ZN2CA11Transaction6commitEv + 568
20 QuartzCore 0x0000000114cfe51a _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 76
21 CoreFoundation 0x0000000111717607 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
22 CoreFoundation 0x000000011171755e __CFRunLoopDoObservers + 430
23 CoreFoundation 0x00000001116fbb81 __CFRunLoopRun + 1537
24 CoreFoundation 0x00000001116fb30b CFRunLoopRunSpecific + 635
25 GraphicsServices 0x0000000113ecea73 GSEventRunModal + 62
26 UIKit 0x000000010e1e2057 UIApplicationMain + 159
27 _blackened_ 0x000000010d2896c7 main + 55
28 libdyld.dylib 0x00000001127b7955 start + 1
问候,
亚伦
最佳答案
问题已解决。
我认为问题在于调用 collectionView(_:layout:sizeForItemAt:)
来确定 collectionViewContentSize
属性。但我尝试访问其中的collectionViewContentSize
。
我使用collectionView
的bounds
修复了它。
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let viewSize = collectionView.bounds.size
var cellWidth = viewSize.width / 2
if let flowLayout = collectionViewLayout as? UICollectionViewFlowLayout {
let usableViewWidth = viewSize.width - flowLayout.sectionInset.left - flowLayout.sectionInset.right
cellWidth = usableViewWidth / 2 - flowLayout.minimumInteritemSpacing / 2
}
return CGSize(width: cellWidth, height: cellWidth)
}
关于ios - collectionView 中的异常(_ :layout:sizeForItemAt:) when accessing layout. collectionViewContentSize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51279230/
我在 UITableViewCell 中有 UICollectionView ,它的委托(delegate)和数据源在表格单元类中声明。它第一次加载时效果很好,但后来当我滚动集合时会更改它的大小。我注
上下文- 我正在开发一个 macOS 菜单栏应用程序,它显示一系列项目。这些项目存在于 Collection View 中并包含一个文本字段。 现在, Collection View 布局的固定高度为
我希望第一部分的单元格为 Collection View 的全宽度,第二部分的单元格为宽度的一半。启动时,单元格不遵循给定的宽度,尽管高度似乎受到尊重。几秒钟后, Collection View 将重
我正在尝试根据图片的纵横比以及其他因素来动态调整单元格的大小,以创建自定义布局。这些计算似乎减慢了我的应用程序的加载速度。我想将此进程移至后台线程。下面是该函数的代码。是否可以在后台线程上运行此函数以
我正在为我的 Collection View 使用自定义布局,但如果我使用自定义布局,sizeForItemAt 方法不会调用。 我的自定义布局: public class HorizontalCol
我正在尝试根据里面的内容设置我的单元格的大小这是我的代码,它崩溃了,我找不到错误消息。 extension TimelineCollectionVC: UICollectionViewDelegate
我想给所有单元格大小以适合所有设备。这是索引路径中我的 Collection View 单元格 sizeForItem 的代码: extension PersonListViewController:
我正在使用 sizeForItemAt 设置一个 View Controller 的单元格大小,但似乎我也必须为其他 CollectionView 返回一个结果,问题是我没有其他 Collection
我正在尝试在 Collection View 中设置单元格大小变化的动画。 在“didSelectItemAt”中: collectionView.performBatchUp
我的 UICollectionView 的宽度/高度匹配所有可用空间。 我想在一行(两列)中显示两个单元格 所以一个单元格的宽度应该是UICollectionView的一半宽度(collectionV
我正在尝试布局我的 collectionViewCell 的大小,以便每行中有 7 个单元格(很简单吧?)。 cell很简单,只有一个UILabel,上、左、下、右约束均为0。 我已经设置了 size
我在 viewcontroller 中设置了 2 个 collectionView,它们都从端点获取数据,然后 reloadData()。 一个 collectionView 就像一个标题选项卡,其单
我使用自动布局来动态计算 collectionView 单元格的大小。一些单元格在第一次滚动到查看端口时使用来自重用单元格的尺寸。当我继续滚动 collectionView 时,它们将被设置为正确的值
我遇到了一个奇怪的问题,我不确定为什么会发生这种情况。如您所见,这两个图像一个是运行 ipad 的 ios 9,另一个是运行 ipad 的 ios11。对于 ios9,运行 ipad 单元格不会调整大
我有 ViewController,其中有两个 collectionView 但对于一个我想要 isPagingEnabled 用于单元格和另一个 collectionView全帧宽度的 3 项。我怎
我有一个 UICollectionViewCell,里面有一个 UICollectionView 和 UICollectionViewFlowLayout。我正在使单元格成为 Collection V
所以正如标题所暗示的那样,我似乎遇到了一个奇怪的问题。我在这里要做的就是创建一个 2 列的 Collection View ,而无需将任何内容硬编码到我的委托(delegate)方法中。调试后我发现
我有一个 collectionView 设置如下,但是在 sizeForItemAt 中 collectionView!.frame.size 与渲染结果不同。 注意:我只对 collectionVi
我使用 UICollectionView 制作了画廊。 如果你降低屏幕,图像应该继续出现并停在 20。 代码不断更新。但是设置cell大小的函数collectionView(_:layout:size
实现 我想在 UICollectionView 中拥有两种不同的项目大小。因此我已经实现了 UICollectionViewDelegateFlowLayout 的 collectionView(_:
我是一名优秀的程序员,十分优秀!