UICollectionReusableView 中的自动布局不适用于 iOS7 但适用于 iOS8
Posted
技术标签:
【中文标题】UICollectionReusableView 中的自动布局不适用于 iOS7 但适用于 iOS8【英文标题】:Auto Layout in UICollectionReusableView not working on iOS7 but working on iOS8 【发布时间】:2015-01-09 11:52:53 【问题描述】:我正在开发与 ios8 和 iOS7 兼容的应用程序。
我通过子类化UICollectionReusableView
制作了一个集合视图标题,并且UI 是使用Interface Builder 制作的。这是标题接口的模式:
----------------------------
| |
| A |
| |
|---------------------------|
| |
| B |
| |
|---------------------------|
| |
| C |
| |
----------------------------
问题
A
、B
和 C
视图由超级视图 (UICollectionReusableView
) 上的前导和尾随链接,并且在 iOS8 上运行良好。但是在 iOS7 上,当视图布局为具有参考大小(宽度为 768pt)时,子视图的宽度为 1216pt(它应该与父视图的宽度相同:768pt)...
我发现了什么
以下是UICollectionReusableView
的限制条件:
<NSLayoutConstraint:0x7c4196c0 UIView:A.top == HEADER:0x7be52ff0.top>,
<NSLayoutConstraint:0x7c4196f0 HEADER:0x7be52ff0.trailing == UIView:A.trailing>,
<NSLayoutConstraint:0x7c419720 UIView:A.leading == HEADER:0x7be52ff0.leading>,
<NSLayoutConstraint:0x7c4197b0 HEADER:0x7be52ff0.trailing == UIView:B.trailing>,
<NSLayoutConstraint:0x7c419810 UIView:B.top == UIView:A.bottom>,
<NSLayoutConstraint:0x7c419840 UIView:B.leading == HEADER:0x7be52ff0.leading>,
<NSLayoutConstraint:0x7c419870 UIView:C.top == UIView:B.bottom>,
<NSLayoutConstraint:0x7c4198a0 UIView:C.leading == HEADER:0x7be52ff0.leading>,
<NSLayoutConstraint:0x7c4198d0 HEADER:0x7be52ff0.trailing == UIView:C.trailing>,
<NSLayoutConstraint:0x7c419900 HEADER:0x7be52ff0.bottom == UIView:C.bottom>,
<NSLayoutConstraint:0x7be98df0 HEADER:0x7be52ff0.width == 768>,
<NSLayoutConstraint:0x7be98e20 HEADER:0x7be52ff0.height == 512>
下面是通过在控制台中调用[self recursiveDescription]
来覆盖我的UICollectionReusableView
中的layoutSubviews
时发生的情况:
打电话之前[super layoutSubviews]
<HEADER: 0x7be52ff0; baseClass = UICollectionReusableView; frame = (0 0; 768 512); clipsToBounds = YES; layer = <CALayer: 0x7be87300>>
| <UIView: A; frame = (0 0; 320 360); autoresize = RM+BM; layer = <CALayer: 0x7be53190>>
| | ...
| <UIView: B; frame = (0 360; 320 96); autoresize = RM+BM; layer = <CALayer: 0x7be6bc50>>
| | ...
| <UIView: C; frame = (0 456; 320 56); autoresize = RM+BM; layer = <CALayer: 0x7c417360>>
| | ...
致电[super layoutSubviews]
后
<HEADER: 0x7be52ff0; baseClass = UICollectionReusableView; frame = (0 0; 768 512); clipsToBounds = YES; layer = <CALayer: 0x7be87300>>
| <UIView: A; frame = (0 0; 1216 360); autoresize = RM+BM; layer = <CALayer: 0x7be53190>>
| | ...
| <UIView: B; frame = (0 360; 1216 96); autoresize = RM+BM; layer = <CALayer: 0x7be6bc50>>
| | ...
| <UIView: C; frame = (0 456; 1216 56); autoresize = RM+BM; layer = <CALayer: 0x7c417360>>
| | ...
尝试
我尝试设置前导和尾随常量相对于边距,这没有帮助。
我还尝试在调用[super layoutSubviews]
后手动更改A
、B
和C
的框架,并在这些视图上调用setNeedLayout
。但正如我所料,它会使应用程序崩溃。
问题
我很难找到为什么会发生这种情况,因为 A
、B
和 C
视图中的子视图并没有尝试扩展它们的超级视图。
是否有一些调试技术可以帮助我确定这个错误的来源??
感谢您的帮助!
【问题讨论】:
您是否尝试过在 IB 中重置为建议的约束,看看会发生什么?编辑器->解决自动布局问题 我试过它破坏了 iOS8 和 iOS7 上的一切,而 iOS7 上的问题仍然存在 【参考方案1】:几个小时后,我偶然发现了错误的根源。
我的UICollectionReusableView
在一切都被我的模型对象填充后调用[self layoutIfNeeded]
,并且在设置数据后我在控制器中再次调用它。因此,我删除了在UICollectionReusableView
中进行的调用,现在它在 iOS7 上运行良好。但我仍然不明白为什么它会多次调用layoutIfNeeded
...
【讨论】:
以上是关于UICollectionReusableView 中的自动布局不适用于 iOS7 但适用于 iOS8的主要内容,如果未能解决你的问题,请参考以下文章
Swift - UICollectionReusableView 的子视图不适合宽度
未显示自定义 UICollectionReusableView 元素
显示部分标题 UICollectionReusableView
UICollectionReusableView 中未调用委托