NSLayoutConstraint 后子视图中的 UIButton 未收到触摸

Posted

技术标签:

【中文标题】NSLayoutConstraint 后子视图中的 UIButton 未收到触摸【英文标题】:UIButton in subview not receiving touch after NSLayoutConstraint 【发布时间】:2013-05-18 22:40:50 【问题描述】:

我有 2 个自定义 UIView,我将它们添加到我的 UIViewController,然后使用 NSLayoutConstraint 对齐它们。在我对 UIViewController 视图应用 NSLayoutConstraint 后,自定义 UIViews 中的 UIButtons 不再接收触摸事件。

- (void)viewDidLoad

    [super viewDidLoad];

    navigationBar = [[DtNavigationBar alloc] initWithFrame:CGRectMake(0,0,320,45)];
    [navigationBar setTranslatesAutoresizingMaskIntoConstraints:NO];
    [self.view addSubview:navigationBar];

    switchBar = [[DtSwitch alloc] initWithFrame:CGRectMake(0,0,320,44)];
    [switchBar setTranslatesAutoresizingMaskIntoConstraints:NO];
    [self.view addSubview:switchBar];

    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-0-[navigationBar(45)]-0-[switchBar(44)]-(>=100)-|"
                                                                      options:NSLayoutFormatAlignAllLeft metrics:nil
                                                                        views:NSDictionaryOfVariableBindings(switchBar, navigationBar)]];

DtNavigationBar 和 DtSwitch 都有 UIButton 视图,它们仍然显示在正确的位置,但不再响应触摸。

如果我删除 addConstraints 部分(并手动放置视图),那么按钮可以正常工作。

【问题讨论】:

【参考方案1】:

问题在于,选择使用约束后,您并没有使用 足够 约束。您的布局不明确。

要测试这个假设,运行应用程序,在调试器中暂停,然后在 lldb 控制台中输入:

po [[UIWindow keyWindow] _autolayoutTrace]

AMBIGUOUS LAYOUT 字样会出现在响应中的某处。

您需要足够的约束才能使这些词消失。您必须完全确定故事中所有内容的垂直和水平位置宽度高度。

【讨论】:

以上是关于NSLayoutConstraint 后子视图中的 UIButton 未收到触摸的主要内容,如果未能解决你的问题,请参考以下文章

NSLayoutConstraint:针对stackview中的视图进行布局是不是是一种好习惯?

旋转iOS后子视图控制器高度为零

UITableViewCell 中的 NSLayoutConstraint 中断

NSLayoutConstraint - 无法将子视图框架设置为父视图边界

NSLayoutConstraint 将视图固定到父视图的底部边缘

导航栏和 ViewControllers 视图之间的 NSLayoutConstraint