gpt4 book ai didi

iOS 查看尺寸 iPad

转载 作者:行者123 更新时间:2023-11-28 15:05:45 25 4
gpt4 key购买 nike

<分区>

我有一个关于 iPad 上的 UIViews 的简短问题。我在 UIViewController 的主视图之上创建了一个新 View ,并添加了值为 0 的左、右、上、下约束,以覆盖整个 View 。

运行应用程序后,正如预期的那样,我在完整的主视图之上看到了灰色 View 。

奇怪的是,当我将它们打印到标准输出时,我得到了两个 View 的框架宽度和高度的不同值:

主视图:宽度:768.0,高度:1024.0第二个观点:宽度:375.0,高度:667.0

我不明白,为什么这些值不相等,因为两个 View 在运行时具有相同的大小,灰色的第二个 View 大于 375 的宽度。

我的主要方法是在第二个灰色 View 上添加一个 AVPlayerLayer 作为背景视频。但是当我这样做时,视频不会覆盖全屏,而是只覆盖 375x667。

import UIKit

class ViewController: UIViewController {

@IBOutlet var secondView: UIView!

override func viewDidLoad() {
super.viewDidLoad()

print("Main View:")
print("Width: \(self.view.frame.width), Height: \(self.view.frame.height)")

print("Second View:")
print("Width: \(self.secondView.frame.width), Height: \(self.secondView.frame.height)")

}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}

}

Simulator

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com