AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES

转载:http://krakendev.io/blog/autolayout-magic-like-harry-potter-but-real

One of my personal favorite things about good code and well-designed features is self-documentation. For the most part, a successful implementation of a feature without having to dive into online documentation feels like...well, magic.

Auto Layout however, has a few features that aren't very self-explanatory. Among these features are Content Hugging & Content Compression Priorities. BUT, before we go into these two features, we need to understand something else first -Intrinsic Content Size

INTRINSIC CONTENT SIZE

You may have seen this property onUIViewand it's fairly simple to understand. For most cases, a view knows more about what it's size should be than the system laying it out. Auto Layout takes advantage of this when determining what size a view should be. A view, such as aUILabel, will know what size it's content is. In the case of aUILabel, it determines it from the text. For other cases like aUIImageView, it gets determined through the size of the original image, etc. View's with intrinsic content sizesgenerally size themselves. However, this is not always a hard and fast rule. In many cases, yourNSLayoutConstraints can be defined in a way that can be satisfied in multiple ways. To restrict how many ways constraints can be satisfied and define more strict behaviors, we can take advantage ofcontent huggingandcontent compression resistancepriorities to help a brotha out.

THE MORE YOU LEARN, THE MORE YOU KNOW

Both of these properties can be set along bothVertical&Horizontalaxes. This means that you can set priorities for both the width and height of a view.

Along either of these axes, you also have levels that you can set for them. These levels map to a number from 1-1000 where 1 is aLowpriority and 1000 is aRequiredpriority. These priority values are really important because their values are what determine a view's sizing behavior. What's also important to remember is that they arecomparativevalues. In the cases where there are constraint conflicts between two or more views, Auto Layout looks at these values and sizes them in order from highest priority to the smallest priority.

CONTENT HUGGING PRIORITY

When you want a view to resist growing larger than it's intrinsic content size, this is the property you want to be looking at. Let's take an easy example: two labels (a multi-line title label and a multi-line description label) stacked on top of each other in aUITableViewCelllike so:

AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第1张图片

Currently, our titleLabel and descriptionLabel have equal vertical content hugging priorities of 250 each. This is fine because of how big the cell currently is, but what happens when we make the cell bigger than that? Which label should grow with it? Should they both grow at the same time? Can you guess which label grows and which hugs it's content? I can't.

"Well, what's the answer?!", you say?

SPOILERS: raising the height of the cell in the storyboard actually produces this result and even gives us a nifty error:

AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第2张图片

In a situation like our two stacked labels, Auto Layout needs a way to figure out which of the two labels to expand. It does so by inspecting each label's priority behaviors. In the case ofcontent hugging, the label with thelowest priority will loseand in turn, willgrowwith it's container. The label with the higher priority does the inverse; it wins the battle of priorities and keeps it's size to match it's intrinsic content size. If both happen to be equal to each other, then the system can choose any view to expand that it feels like. Undefined behavior like this is never good as it can vary from OS to OS.

In our example, it's obvious that we want our single line title label to be as tall as it's content, and our multi line description label to be flexible in height. To do so, we simply have to make sure the title label'svertical content hugging priorityishigherthan our description label's content hugging priority. By making our titleLabel's content hugging priority higher than our descriptionLabel, we get this result:

AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第3张图片

Hooray! No Auto Layout issues!

CONTENT COMPRESSION RESISTANCE PRIORITY

When you want a view to resist being resized smaller than it's content, then this is the property that you want to be looking at. As indicated in it's name, a higher Compression Resistance Priority on a viewensures that it doesn't shrinkenough to truncate it's contents.

In the case of our stacked label example, this can happen when the cell shrinks smaller than the contents of our two labels. In a situation like that, Auto Layout needs to figure out which label to shrink first. How it chooses is byshrinking the labelwith thelowercompression resistance. Since both our titleLabel and descriptionLabel's compression resistances are equal, we can't tell right away which label is going to shrink. Which label is going to shrink with the cell? Do they both clip? Well, as it turns out, this happens:

AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第4张图片

Sad titleLabel is sad.

This result isn't necessarily what we want. In our example, the label we don't want shrinking, again, is the title label since the description label can be truncated if need be. To ensure our title label doesn't truncate it's contents, we want to make sure it's compression resistance priority ishigher thanour description label's compression resistance. This will make sure that Auto Layout will have to shrink thedescriptionlabel if it faces a situation like the one we just came from. By making the compression resistance priority of the titleLabel higher than the description label, we get this nice truncated result:

AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第5张图片
AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第6张图片

DOING THE DEED

For both Content Hugging and Content Compression Resistance Priorities, there are two ways to set them: Programmatically & through Interface Builder.

Here's how it looks programmatically:

titleLabel.setContentCompressionResistancePriority(UILayoutPriorityRequired,forAxis:.Horizontal)descriptionLabel.setContentHuggingResistancePriority(UILayoutPriorityDefaultLow,forAxis:.Horizontal)

Interface Builder (as it is for most view related properties) has been by far the easiest way to set them. In your storyboard, navigate to the Size Inspector (where your constraints normally live) and scroll to the bottom. You should see these two fields:

AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第7张图片

TL;DR

All that said, here's a cute picture from@mokagiothat demonstrates the difference between Content Hugging and Content Compression Resistance at a high level (perfect for a TL;DR):

AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES_第8张图片

And in case Mr. Balloon Man wasn't enough of a TL;DR for you, then here you go:

Intrinsic Content Size- Pretty self-explanatory, but views with variable content are aware of how big their content is and describe their content's size through this property. Some obvious examples of views that have intrinsic content sizes areUIImageViews,UILabels, *UIButtons.

Content Hugging Priority- The higher this priority is, the more a viewresists growing largerthan it's intrinsic content size.

Content Compression Resistance Priority- The higher this priority is, the more a viewresists shrinking smallerthan it's intrinsic content size.

CONCLUSION

Content Sizing Priorities have always been a bit of a sore spot for iOS Developers in general. When I first started out, I actually wish I could have had something like this guide to help me out. Luckily enough, I was able to make do by guessing priorities and running a thousand times until it did what I wanted it to do. Hopefully what I've written can help someone out there figure this out for their own. As always, feel free to comment below if I got anything terribly wrong

你可能感兴趣的:(AUTO LAYOUT MAGIC: CONTENT SIZING PRIORITIES)