【发布时间】:2015-04-05 09:35:24
【问题描述】:
所以,就像 Messages 应用程序一样,我有一个 UITableView 占据了大部分屏幕。在 UITableView 下方,我有一个 UIView,其中包含一个 UITextView 和一个 UIButton。当用户单击 UITextView 时,会出现键盘。我已经成功地将 UIView 移动到键盘顶部(这就是我的 bottomConstraint 插座所做的),但我也在努力移动 UITableView。
现在我在 UITableView 上设置了一个高度约束,设置为 528。我已将该约束连接到一个 Outlet,这是我的 keyboardWillShow 方法。
- (void)keyboardWillShow:(NSNotification *)sender {
NSDictionary *info = [sender userInfo];
NSTimeInterval animationDuration = [[info objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
CGRect frame = [info[UIKeyboardFrameEndUserInfoKey] CGRectValue];
CGRect newFrame = [self.view convertRect:frame fromView:[[UIApplication sharedApplication] delegate].window];
self.bottomConstraint.constant = newFrame.origin.y - CGRectGetHeight(self.view.frame);
CGFloat height = CGRectGetHeight(self.view.frame) - self.composeTextView.frame.size.height - newFrame.origin.y;
self.tableViewHeightConstraint.constant = height;
[UIView animateWithDuration:animationDuration animations:^{
[self.view layoutIfNeeded];
}];}
这是我的约束/故事板的屏幕截图。
^^视图控制器
^^UITableView 约束
^^UIView 约束(包含按钮+文本视图的视图)
这是我的错误:
无法同时满足约束。 以下列表中的至少一个约束可能是您不想要的。试试这个:(1)查看每个约束并尝试找出您不期望的; (2) 找到添加了一个或多个不需要的约束的代码并修复它。 (注意:如果您看到不理解的 NSAutoresizingMaskLayoutConstraints,请参阅 UIView 属性 translatesAutoresizingMaskIntoConstraints 的文档) (
"<NSLayoutConstraint:0x174280320 V:[UITableView:0x135031c00(528)]>",
"<NSLayoutConstraint:0x17409ff40 V:[UIView:0x174184ac0(40)]>",
"<NSLayoutConstraint:0x1742807d0 V:|-(0)-[UITableView:0x135031c00] (Names: '|':UIView:0x174184b90 )>",
"<NSLayoutConstraint:0x1742808c0 V:[UITableView:0x135031c00]-(0)-[UIView:0x174184ac0]>",
"<_UILayoutSupportConstraint:0x1740b9d40 V:[_UILayoutGuide:0x1741b3b00(0)]>",
"<_UILayoutSupportConstraint:0x1740b9ce0 _UILayoutGuide:0x1741b3b00.bottom == UIView:0x174184b90.bottom>",
"<NSLayoutConstraint:0x174280690 UIView:0x174184ac0.bottom == _UILayoutGuide:0x1741b3b00.top - 224>",
"<NSLayoutConstraint:0x174280dc0 'UIView-Encapsulated-Layout-Height' V:[UIView:0x174184b90(568)]>"
)
将尝试通过打破约束来恢复
NSLayoutConstraint:0x174280320 V:[UITableView:0x135031c00(528)]
【问题讨论】:
标签: ios objective-c uitableview autolayout constraints