autoresizingMask属性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了autoresizingMask属性相关的知识,希望对你有一定的参考价值。
属性的意思:自动调整子控件与父控件的位置
enum
{
UIViewAutoresizingNone = 0, // 不自动调整
UIViewAutoresizingFlexibleLeftMargin = 1 << 0, // 自动调整与superView左边的边距,使边距保持不变
UIViewAutoresizingFlexibleWidth = 1 << 1, // 自动调整自己的宽度,保持与superView左右两边的距离不变
UIViewAutoresizingFlexibleRightMargin = 1 << 2, // 自动调整与superView右边的边距,使边距保持不变
UIViewAutoresizingFlexibleTopMargin = 1 << 3, // 自动调整与superView上边的边距,使边距保持不变
UIViewAutoresizingFlexibleHeight = 1 << 4, // 自动调整自己的高度,保持与superView上下两边的距离不变
UIViewAutoresizingFlexibleBottomMargin = 1 << 5 // 自动调整与superView下边的边距,使边距保持不变
};
这个属性已经很久不用了,推荐使用自动布局,自动布局的功能比这个属性强大的多,没有最好,只有更好,慢慢研究。
以上是关于autoresizingMask属性的主要内容,如果未能解决你的问题,请参考以下文章
关于UIView的autoresizingMask属性的研究转