UIScrollView Scrollable Content Size Ambiguity

Fellow devs, I am having trouble with AutoLayout in Interface Builder (Xcode 5 / iOS 7). It's very basic and important so I think everyone should know how this properly works. If this is a bug in Xcode, it is a critical one!

So, whenever I have a view hierarchy such as this I run into trouble:

>UIViewController
>> UIView
>>>UIScrollView
>>>>UILabel (or any other comparable UIKit Element)

The UIScrollView has solid constraints, eg, 50 px from every side (no problem). Then I add a Top Space constraint to the UILabel (no problem) (and I can even pin height / width of the label, changes nothing, but should be unneccessary due to the Label's intrinsic size)

The trouble starts when I add a trailing constraint to the UILabel:

Eg, Trailing Space to: Superview Equals: 25

Now two warnings occur - and I don't understand why:

A) Scrollable Content Size Ambiguity (Scroll View has ambiguous scrollable content height/width)

B) Misplaced Views (Label Expected: x= -67 Actual: x= 207

I did this minimal example in a freshly new project which you can download and I attached a screenshot. As you can see, Interface Builder expects the Label to sit outside of the UIScrollView's boundary (the orange dashed rectangle). Updating the Label's frame with the Resolve Issues Tool moves it right there.

Please note: If you replace the UIScrollView with a UIView, the behaviour is as expected (the Label's frame is correct and according to the constraint). So there seems to either be an issue with UIScrollView or I am missing out on something important.

When I run the App without updating the Label's frame as suggested by IB it is positioned just fine, exactly where it's supposed to be and the UIScrollView is scrollable. If I DO update the frame the Label is out of sight and the UIScrollView does not scroll.

Help me Obi-Wan Kenobi! Why the ambiguous layout? Why the misplaced view?

You can download the sample project here and try if you can figure out what's going on: https://github.com/Wirsing84/AutoLayoutProblem

Interface Builder中的问题说明


So I just sorted out in this way:

  • Inside the UIScrollView add a UIView (we can call that contentView );

  • In this contentView , set top, bottom, left and right margins to 0 (of course from the scrollView which is the superView ); Set also align center horizontally and vertically ;

  • Finished .

    Now you can add all your views in that contentView , and the contentSize of the scrollView will be automatically resized according with the contentView .

    Update:

    Some special case is covered by this video posted by @Sergio in the comments below.


    This error took me a while to track down, initially I tried pinning the ScrollView's size but the error message clearly says "content size". I made sure everything I pinned from the top of the ScrollView was also pinned to the bottom. That way the ScrollView can calculate its content height by finding the height of all the objects & constraints. This solved the ambiguous content height, the width is pretty similar... Initially I had most things X centered in the ScrollView, but I had to also pin the objects to the side of the ScrollView. I don't like this because the iPhone6 might have a wider screen but it will remove the 'ambiguous content width' error.


    It's answer for my self-answered question UIScrollView + Centered View + Ambigous Scrollable Content Size + many iPhone sizes.

    But it fully cover your case too!

    So, here is the initial state for simplest case:

  • scrollView with 0 constraints to all edges
  • Button centered Horizontal and Vertical with fixed Width and Height constraints
  • And, of course - annoying warnings Has ambiguous scrollable content width and Has ambiguous scrollable content height .
  • 1

    All, that we have to do is:

  • Add 2 additional constraints, for example "0" for trailing and/or bottom space for our view (look at the example on screenshot below).
  • Important: you have to add trailing and/or bottom constraints. Not "leading and top" - it's not works!

    2

    You can check it in my example project , that demonstrating how to fix this issue.

    PS

    According logic - this action should cause "conflicting constraints". But no!

    I don't know why it works and how Xcode detects which constraint is more prioritised (because I'm not set priority for these constraints explicity). I'll be thankful if someone explain, why it works in comments below.

    链接地址: http://www.djcxy.com/p/28288.html

    上一篇: Autolayout:将约束添加到超级视图而不是顶部布局指南?

    下一篇: UIScrollView可滚动内容大小歧义