0

我正在尝试使用自动布局约束来实现动态布局;为此,我创建了 3 个容器视图。第一个是 49 高度,灵活的宽度。第二个是 320 高度和 320 宽度,最后一个是 69 高度灵活宽度。所以这是应该将每个视图放在另一个视图下方的代码。

NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings(searchControlsView, workArtView, playBackControlsContainer);
    // Position time search controls

    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"|[searchControlsView]|"
                                                          options:0
                                                          metrics:nil
                                                            views:viewsDictionary];
    [self.view addConstraints:constraints];
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[searchControlsView]"
                                                          options:0
                                                          metrics:nil
                                                            views:viewsDictionary];
    [self.view addConstraints:constraints];

    // position workArt
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"|[workArtView]|"
                                                          options:0
                                                          metrics:nil
                                                            views:viewsDictionary];
    [self.view addConstraints:constraints];

    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:[searchControlsView]-0-[workArtView]"
                                                          options:0
                                                          metrics:nil
                                                            views:viewsDictionary];
    [self.view addConstraints:constraints];

    // position bottom controls
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"|[playBackControlsContainer]|"
                                                          options:0
                                                          metrics:nil
                                                            views:viewsDictionary];
    [self.view addConstraints:constraints];

    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:[workArtView]-(>=0)-[playBackControlsContainer]|" options:0 metrics:nil views:viewsDictionary];
    [self.view addConstraints:constraints];

我想要实现的是在第二个视图下方的最后一个视图如果可能的话,如果不是,第三个视图将在整个屏幕的底部对齐并与第二个视图重叠。但是,第三个视图 (playBackControlsContainer) 没有显示在屏幕中。

在此之前,我从视图中删除了所有约束。我尝试了几件事,但我只是从编程约束开始,我无法意识到我失败的地方......除此之外,调试日志还有很多额外的视图,并且没有每个控件的地址的标识符,真的很难弄清楚找出为什么我的布局可能模棱两可。这是调试日志以防万一。

*<UIWindow:0xc1a6510> - AMBIGUOUS LAYOUT
|   *<UILayoutContainerView:0xc1b6b50>
|   |   *<UITransitionView:0xc1a3da0>
|   |   |   *<UIViewControllerWrapperView:0xc3b82b0>
|   |   |   |   *<UIView:0xc1b9830>
|   |   |   |   |   *<UILayoutContainerView:0xc1ba6a0>
|   |   |   |   |   |   *<UINavigationTransitionView:0xc1bf490>
|   |   |   |   |   |   |   *<UIViewControllerWrapperView:0xc1c5110>
|   |   |   |   |   |   |   |   *<UIView:0xb478820> - AMBIGUOUS LAYOUT
|   |   |   |   |   |   |   |   |   *<UIView:0xb4f9d70> - AMBIGUOUS LAYOUT
|   |   |   |   |   |   |   |   |   |   *<UIButton:0xb4f3e40>
|   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xc4e7030>
|   |   |   |   |   |   |   |   |   |   *<UIButton:0xb4f5440>
|   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xc14b0a0>
|   |   |   |   |   |   |   |   |   |   |   *<UIButtonLabel:0xb4fb610> - AMBIGUOUS LAYOUT
|   |   |   |   |   |   |   |   |   |   *<UIButton:0xb4f0e80>
|   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xc1f00b0>
|   |   |   |   |   |   |   |   |   |   |   *<UIButtonLabel:0xb4fac70> - AMBIGUOUS LAYOUT
|   |   |   |   |   |   |   |   |   |   *<UIButton:0xb4f04f0>
|   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xc129480>
|   |   |   |   |   |   |   |   |   |   |   *<UIButtonLabel:0xb4fa2e0> - AMBIGUOUS LAYOUT
|   |   |   |   |   |   |   |   |   *<UIView:0xb478790>
|   |   |   |   |   |   |   |   |   |   *<UIImageView:0xb4f9b60>
|   |   |   |   |   |   |   |   |   |   *<LVStopWatchLabel:0xb479200>
|   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xb478920>
|   |   |   |   |   |   |   |   |   *<UIView:0xb479940>
|   |   |   |   |   |   |   |   |   |   *<UIButton:0xb4f6ab0>
|   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xc4e6c00>
|   |   |   |   |   |   |   |   |   |   *<UILabel:0xb479db0>
|   |   |   |   |   |   |   |   |   |   *<UISlider:0xb4f5e90>
|   |   |   |   |   |   |   |   |   |   |   <UIView:0xc4e05e0>
|   |   |   |   |   |   |   |   |   |   |   |   <UIView:0xc4e0760>
|   |   |   |   |   |   |   |   |   |   |   |   |   <UIView:0xc4e0880>
|   |   |   |   |   |   |   |   |   |   |   |   <UIView:0xc4e5c40>
|   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xc4e67d0>
|   |   |   |   |   |   |   |   |   |   |   |   <UIImageView:0xc4e5d40>
|   |   |   |   |   |   |   |   |   *<_UILayoutGuide:0xb478440> - AMBIGUOUS LAYOUT
|   |   |   |   |   |   |   |   |   *<_UILayoutGuide:0xb4782a0> - AMBIGUOUS LAYOUT
|   |   |   |   |   |   <UINavigationBar:0xc1c4a10>
|   |   |   |   |   |   |   <_UINavigationBarBackground:0xc1c7530>
|   |   |   |   |   |   |   |   <UIImageView:0xc1c7810>
|   |   |   |   |   |   |   <UINavigationItemView:0xc4cf610>
|   |   |   |   |   |   |   |   <UILabel:0xc4dcae0>
|   |   |   |   |   |   |   <UINavigationItemButtonView:0xc4dcf10>
|   |   |   |   |   |   |   |   <UILabel:0xc4dcfe0>
|   |   |   |   |   |   |   <_UINavigationBarBackIndicatorView:0xc3c3880>
|   |   |   |   |   <GADBannerView:0xc3de310>
|   |   |   |   |   |   <GADWebView:0xc3de440>
|   |   |   |   |   |   |   <_UIWebViewScrollView:0xc3e01a0>
|   |   |   |   |   |   |   |   <UIWebBrowserView:0xd280600>
|   |   |   |   |   <ADBannerView:0xc19ad20>
|   |   |   |   |   |   <ADRemoteView:0xc19cca0>
|   |   |   |   |   |   <UIView:0xc19d590>
|   |   <UITabBar:0xb4a47e0>
|   |   |   <_UITabBarBackgroundView:0xc47db60>
|   |   |   |   <_UIBackdropView:0xc47d240>
|   |   |   |   |   <_UIBackdropEffectView:0xc47e490>
|   |   |   |   |   <UIView:0xc47e530>
|   |   |   <UITabBarButton:0xc19ed40>
|   |   |   |   <UITabBarSwappableImageView:0xc17ee00>
|   |   |   |   <UITabBarButtonLabel:0xc19f170>
|   |   |   <UITabBarButton:0xc1a4120>
|   |   |   |   <UITabBarSwappableImageView:0xc1a3570>
|   |   |   |   <UITabBarButtonLabel:0xc1a3e60>
|   |   |   <UITabBarButton:0xc1a62b0>
|   |   |   |   <UITabBarSwappableImageView:0xc1a6660>
|   |   |   |   <UITabBarButtonLabel:0xc1a6390>
|   |   |   <UITabBarButton:0xc1a8a30>
|   |   |   |   <UITabBarSwappableImageView:0xc1a9080>
|   |   |   |   <UITabBarButtonLabel:0xc1a8f60>
|   |   |   <UIImageView:0xc47ead0>

任何帮助找出可能是什么原因,我将非常感激。谢谢。

4

1 回答 1

0

我认为您忘记设定观点的高度。

例如,

constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[searchControlsView(49)]" options:0 metrics:nil views:viewsDictionary];
于 2013-10-28T04:19:35.383 回答