我通过使用修复了纵向和横向的 UILabel
Label.autoresizingMask = UIViewAutoresizingFlexibleWidth;
但没有设置在 UILabel 的垂直对齐中,我也试试这个
[Label sizeToFit];
任何方式他们都可以工作
谢谢
我通过使用修复了纵向和横向的 UILabel
Label.autoresizingMask = UIViewAutoresizingFlexibleWidth;
但没有设置在 UILabel 的垂直对齐中,我也试试这个
[Label sizeToFit];
任何方式他们都可以工作
谢谢
您可以使用灵活的高度来固定与 OR 运算符的垂直对齐
标签.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
编辑:
Label.autoresizingMask=UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleLeftMargin;