开发者

How to auto-resize UIView proportionally?

开发者 https://www.devze.com 2023-01-05 19:15 出处:网络
I have a UIView whose height should always be exactly 1.5 times the width.When the view is auto-resized (in this case, beca开发者_运维技巧use the iPhone is rotated), this proportion gets messed up. Ho

I have a UIView whose height should always be exactly 1.5 times the width. When the view is auto-resized (in this case, beca开发者_运维技巧use the iPhone is rotated), this proportion gets messed up. How can I make sure the height/width ratio doesn't change as the view resizes?


You need to set the views autoresizingMask property to UIViewAutoresizingNone. This will prevent the size of the view from changing at all when the parent view's size changes (such as when the phone rotates.) If you want the view to resize on rotation, but maintain it's aspect ratio (for example if you want it wider in landscape but still 1:1.5), then you will need to set the view's frame yourself to the desired dimensions (but maintaining the desired ratio) in the view controller's willRotateToInterfaceOrientation:duration: method.


You could implement the -sizeThatFits: method for your view to keep the size in proportion.


Alternatively, you could use a custom superview that implements - (void)layoutSubviews to have complete control over the layout.

0

精彩评论

暂无评论...
验证码 换一张
取 消