作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作带有视频播放器的应用程序,我的整个结构都是为纵向 View 制作的,除了这个视频播放器。我只想为此 View 启用横向旋转。但是我查了很多论坛,每个回答都是向 App Delegate 添加一些代码,但我没有。那我该怎么办。
最佳答案
这是给你的演示。您可以通过调用函数 changeOrientation
将方向更改为您喜欢的方向。您还可以在完成方向更改后使用 .onReceive
反转方向更改。每次方向更改时都会调用 .onReceive
,因此您可以反转您不喜欢的方向更改。
我知道这不是最佳的,但这是我在不使用大量 UIKit 和 AppDelegate 的情况下所能找到的最好的。您可以使用 AppDelegate 以获得更好的结果(我认为)。
import SwiftUI
import UIKit
struct ContentView: View {
private let rotationChangePublisher = NotificationCenter.default
.publisher(for: UIDevice.orientationDidChangeNotification)
@State private var isOrientationLocked = false
var body: some View {
VStack {
Button("Change orientation") {
if UIDevice.current.orientation.isPortrait {
changeOrientation(to: .landscapeLeft)
} else {
changeOrientation(to: .portrait)
}
}.padding()
Button("Orientation is \(isOrientationLocked ? "" : "NOT ")Locked to portrait-only") {
isOrientationLocked.toggle()
}.padding()
}
.font(.system(size: 17, weight: .semibold))
.onReceive(rotationChangePublisher) { _ in
// This is called when there is a orientation change
// You can set back the orientation to the one you like even
// if the user has turned around their phone to use another
// orientation.
if isOrientationLocked {
changeOrientation(to: .portrait)
}
}
}
func changeOrientation(to orientation: UIInterfaceOrientation) {
// tell the app to change the orientation
UIDevice.current.setValue(orientation.rawValue, forKey: "orientation")
print("Changing to", orientation.isPortrait ? "Portrait" : "Landscape")
}
}
此外,请确保您事先允许使用不同的方向:
关于ios - SwiftUI:如何在没有 AppDelegate 的情况下强制景观,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67035307/
我是一名优秀的程序员,十分优秀!