( Autoresizing mask ) flexible width of an image with fixed height

前端 未结 2 716
没有蜡笔的小新
没有蜡笔的小新 2020-12-08 03:18

I have been playing around with iPhone interface building using only code and not using IB.

Now I\'m facing the following problem:

How can I set an image to

2条回答
  •  执念已碎
    2020-12-08 03:51

    You probably want this:

    [myImageView setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
    

    That will keep the margins static and resize the width.

提交回复
热议问题