Set UIView's autoresizing mask programmatically?

Hiren picture Hiren · Oct 2, 2012 · Viewed 51.9k times · Source

I have to set autoresizingMask programmatically for UIView.

I don't know how to implement this.

enter image description here

Answer

pnizzle picture pnizzle · Nov 12, 2013

To achieve what you have in that screen shot you need to do the opposite of what DrummerB suggests. You want a fixed top margin so you make every other side flexible like so:

Objective C:

view.autoresizingMask = UIViewAutoresizingFlexibleRightMargin |
                        UIViewAutoresizingFlexibleLeftMargin |
                        UIViewAutoresizingFlexibleBottomMargin;

Not setting a side as flexible means that it will be fixed (default behaviour), thats why there is no such thing as UIViewAutoResizingFixedTopMargin (since its the same as not setting UIViewAutoresizingFlexibleTopMargin)

Edit for Swift:

view.autoresizingMask = [.FlexibleRightMargin, .FlexibleLeftMargin, .FlexibleBottomMargin]

Credit to Tom Calmon for adding the swift version 1st.

Swift 5.0 update:

view.autoresizingMask = [.flexibleRightMargin, .flexibleLeftMargin, .flexibleBottomMargin]

Cheers.