• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - iphone 6 plus 上具有 600x600 pt 框架的 UIViews 以及大小类

[复制链接]
菜鸟教程小白 发表于 2022-12-13 03:44:40 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在开发一个可在所有设备(iPad、iPhone)上使用的应用程序。我为 iPad 和 iPhone 平台使用不同的 xib 文件(只是因为原始应用程序仅适用于 iPad 并且效果很好(没有任何自动布局))。

我的 iPhone xib 文件使用自动布局和大小类。我有启动屏幕,我的启动图像设置好了。当应用程序启动时,viewDidLoad 中的 View 框架为 600x600,但没关系,在 viewWillAppear 之前我什么都不做。

此时 xib 文件的框架是正确的(对于 iphone5 和 iphone 6 和 iPhone 6+)。但是我在这个 xib 中几乎没有其他 View 与主视图平行(不是任何其他 View 的 subview )。所有这些其他 View 都有一个 600x600 的框架。

我可以显式设置框架,但我必须手动调整每个 subview 的大小...

如果我关闭尺寸类并仅使用自动布局,则框架始终为 iphone 5s 尺寸。

附:我刚刚添加了所有可能的启动图像(正确尺寸)删除了尺寸类和尺寸如下: 主视图 - 框架 = (0 0; 667 375)

在xib中查看旁边的(不是 subview ,但也必须是全屏 View )-frame = (0 0; 568 320)

所有 View 尺寸都是内部和横向的。

编辑 1 所以我的问题是: xib 中的其他 View 如何在正确的框架中初始化?不是 600x600。

如果我使用“在 View 层次结构中调试”,我可以看到除主“ View ”之外的所有作为 Root View (而不是任何 subview )的 View 的大小都不合适。即使正确报告了屏幕边界, View 仍然是 600x600 大小。

编辑 2 这个问题提出了类似的问题: iOS 8 top layout guide auto layout problems 但是没有给出可以普遍解决问题的答案。



Best Answer-推荐答案


如果我将所有其他 View 作为 subview 添加到我的主视图中,框架的大小会正确(感谢自动布局),但这对我来说不是一个选项,因为我不能在启动时将它们全部作为 subview 。

这就是我让它为我工作的方式:

一旦我添加了帧错误的 subview ,我就会像这样向它添加自动布局约束:

[self.view addSubview:_subviewFromSameXib];  //naming just for example

_subviewFromSameXib.translatesAutoresizingMaskIntoConstraints = NO;


[self.view addConstraint:[NSLayoutConstraint constraintWithItem:_subviewFromSameXib
                                                          attribute:NSLayoutAttributeTop
                                                          relatedBy:NSLayoutRelationEqual
                                                             toItem:self.view
                                                          attribute:NSLayoutAttributeTop
                                                         multiplier:1.0
                                                           constant:0.0]];

[self.view addConstraint:[NSLayoutConstraint constraintWithItem:_subviewFromSameXib
                                                          attribute:NSLayoutAttributeLeading
                                                          relatedBy:NSLayoutRelationEqual
                                                             toItem:self.view
                                                          attribute:NSLayoutAttributeLeading
                                                         multiplier:1.0
                                                           constant:0.0]];

[self.view addConstraint:[NSLayoutConstraint constraintWithItem:_subviewFromSameXib
                                                          attribute:NSLayoutAttributeBottom
                                                          relatedBy:NSLayoutRelationEqual
                                                             toItem:self.view
                                                          attribute:NSLayoutAttributeBottom
                                                         multiplier:1.0
                                                           constant:0.0]];

[self.view addConstraint:[NSLayoutConstraint constraintWithItem:_subviewFromSameXib
                                                          attribute:NSLayoutAttributeTrailing
                                                          relatedBy:NSLayoutRelationEqual
                                                             toItem:self.view
                                                          attribute:NSLayoutAttributeTrailing
                                                         multiplier:1.0
                                                           constant:0.0]];

这将执行以下操作: 添加我的 subview 后,它会添加新的约束,告诉该 subview 它必须根据其父 View 调整大小。

这解决了我的问题,但没有解决主要问题:xib 中的多个 View 不会根据屏幕边界调整大小。只有第一个可以。

顺便说一句,我使用的是 xibs 而不是 Storyboard。我应该添加该 Playground 在所有设备上正确显示所有 View 。只有在运行时他们才会搞砸。

关于ios - iphone 6 plus 上具有 600x600 pt 框架的 UIViews 以及大小类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27298142/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap