UICollectionView Cell + UiLabel 与 AutoLayout [英] UICollectionView Cell + UiLabel with AutoLayout

查看:12
本文介绍了UICollectionView Cell + UiLabel 与 AutoLayout的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将 UILabel 固定到它的父单元格.我添加了四个约束(顶部、前导、尾随、底部)在 iOS 8.0 上可以正常工作,但在 iOS 7.X 上却不行.请看下图:

I'm trying to pin an UILabel to it's parent cell. I added four constraints (top, leading, trailing, bottom) which works fine on iOS 8.0 but not on iOS 7.X. Please see image below:

[点击这里查看完整尺寸]

我做错了什么?请指教!

What am I doing wrong? Please advise!

它似乎是自 Xcode 6 GM 以来才被破坏的.我的方法在 Xcode 6 beta 7 中运行良好.

It seems it's only broken since Xcode 6 GM. My approach was working fine in Xcode 6 beta 7.

此外,如果我减小内部视图的宽度,它会引发以下警告:

Moreover, if I decrease the inner view's width, it throws the following warning:

2014-09-10 19:58:28.109 Test[57827:60b] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints) 
(
    "<NSLayoutConstraint:0x799573a0 H:|-(8)-[UIView:0x798a86e0]   (Names: '|':UIView:0x798ae5d0 )>",
    "<NSLayoutConstraint:0x799573d0 H:[UIView:0x798a86e0]-(43)-|   (Names: '|':UIView:0x798ae5d0 )>",
    "<NSAutoresizingMaskLayoutConstraint:0x798a8b00 h=--& v=--& H:[UIView:0x798ae5d0(50)]>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x799573d0 H:[UIView:0x798a86e0]-(43)-|   (Names: '|':UIView:0x798ae5d0 )>

Break on objc_exception_throw to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.

推荐答案

覆盖自定义单元格的 layoutSubviews 是一种可能的解决方法:

Overriding the custom cell's layoutSubviews is a possible workaround:

override func layoutSubviews() {
    contentView.frame = bounds
    super.layoutSubviews()
}

这篇关于UICollectionView Cell + UiLabel 与 AutoLayout的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆