Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我创建了一个带有一个进度条和一个按钮的自定义警报视图,在旋转设备时,自定义警报视图也会旋转,但警报视图大小会自动更改。我该如何解决?!
旋转设备时,如果启用了视图的自动调整大小,则会在每个视图上检查一个属性。
您的自定义警报视图,因为它肯定是 UIView 的子类,有一个名为autoresizingMask. 将值设置为UIViewAutoresizingNone如下所示:
autoresizingMask
UIViewAutoresizingNone
self.view.autoresizingMask = UIViewAutoresizingNone;
试试这个自动调整视图,就像给定的屏幕截图一样