I want to use a horizontal stack view to place an icon (UIImage) next to a label (UILabel). I want it so the icon is always the same height as the label's text. If the user increases the system font size, I want the icon to adjust accordingly to remain the same height.
Note the stack view with the icon and label are in a UITableViewCell.
How can I do this?
So far I have the following AutoLayout settings:
Needless to say I have tried many different combinations but this is the best I get. I want the UIImageView (Facebook logo) to be the same height as 'Some text'.
答案 0 :(得分:4)
随着图像的增长,您的标签会增长,但您需要相反的行为。您可以通过内容压缩阻力优先级和内容拥抱优先级来控制它。您应该将标签的垂直内容拥抱优先级设置为必需。这将禁止标签变得比其自然高度更大。将图像的垂直内容压缩阻力优先级设置为低,这可能会使图像缩小到标签高度。