我UITableView
在 iOS 8 下运行,我正在使用故事板中约束的自动单元格高度。
我的一个单元格包含一个单元格UITextView
,我需要它根据用户输入收缩和扩展 - 点击以收缩/扩展文本。
我通过向文本视图添加运行时约束并更改约束上的常量以响应用户事件来做到这一点:
-(void)collapse:(BOOL)collapse; {
_collapsed = collapse;
if(collapse)
[_collapsedtextHeightConstraint setConstant: kCollapsedHeight]; // 70.0
else
[_collapsedtextHeightConstraint setConstant: [self idealCellHeightToShowFullText]];
[self setNeedsUpdateConstraints];
}
每当我这样做时,我都会将其包装在tableView
更新中并调用[tableView setNeedsUpdateConstraints]
:
[tableView beginUpdates];
[_briefCell collapse:!_showFullBriefText];
[tableView setNeedsUpdateConstraints];
// I have also tried
// [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];
// with exactly the same results.
[tableView endUpdates];
当我这样做时,我的单元格确实会扩展(并在此过程中进行动画处理),但我会收到约束警告:
2014-07-31 13:29:51.792 OneFlatEarth[5505:730175] 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:0x7f94dced2b60 V:[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...'(388)]>",
"<NSLayoutConstraint:0x7f94dced2260 V:[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...']-(15)-| (Names: '|':UITableViewCellContentView:0x7f94de5773a0 )>",
"<NSLayoutConstraint:0x7f94dced2350 V:|-(6)-[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...'] (Names: '|':UITableViewCellContentView:0x7f94de5773a0 )>",
"<NSLayoutConstraint:0x7f94dced6480 'UIView-Encapsulated-Layout-Height' V:[UITableViewCellContentView:0x7f94de5773a0(91)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7f94dced2b60 V:[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...'(388)]>
388 是我计算的高度,其他限制UITextView
是我的 Xcode/IB 。
最后一个困扰着我——我猜这UIView-Encapsulated-Layout-Height
是第一次渲染时计算出的单元格高度——(我将UITextView
高度设置为> = 70.0)但是这个派生的约束随后推翻了一个更新用户 cnstraint。
更糟糕的是,虽然布局代码说它试图打破我的高度约束,但它没有——它继续重新计算单元格高度,一切都按照我的意愿绘制。
那么,什么是NSLayoutConstraint
UIView-Encapsulated-Layout-Height
(我猜它是自动调整单元格大小的计算高度),我应该如何强制它干净地重新计算?