我想为应用程序添加纵向。有没有办法将 UIView(在 xib 中创建)缩小或适合屏幕?
我在 xib 文件中有横向大小的 View ,现在想将它们设置为与使用 Interface Builder 拉伸(stretch)(中心 block )相反的位置。
或者这在代码中是可能的吗?
Best Answer-推荐答案 strong>
在代码中,可以使用self.myView.frame = self.view.bounds; 。要做到这一点,self.myView.autoresizingMask = UIViewAutoresizingStretchableWidth | UIViewAutoresizingStretchableHeight;
关于ios - 使 UIView 适合屏幕,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/15374051/
|