我使用 XCode 12.2 在 Swift 5 中编写了一个应用程序
该应用程序及其所有功能可在以下模拟器上运行:iPhone 8、iPhone SE 2nd Gen、iPhone 11 Pro、iPhone 12、iPhone 12 Pro 和 iPhone 12 Mini
所有 iPad、iPhone 8 plus、iPhone 11、iPhone 11 Pro Max 和 iPhone 12 Pro Max 都会出现此问题。
我不确定该怎么做,并且正在考虑提交错误报告/TSI,但我想确保我的设计没有明显的问题。
下面是我的内容视图的结构。我删除了一些我认为无关紧要的东西,以简明扼要地说明结构。我还附上了正确运行的初始视图与失败的视图的图像。正确打开屏幕,问题打开屏幕。我还在真正的 iPhone SE 2nd gen 和 iPhone 8 上运行它,得到了相同的结果。提前致谢。
struct ContentView: View {
//@State vars
var body: some View {
NavigationView{
ZStack{
Image("image")
VStack{
Spacer()
HStack{
Text("text")
.bold()
.foregroundColor(.white)
.font(.largeTitle)
Image("image2")
}.offset(y:10)
Form {
Section(header: Text("INITILIZATION SETTINGS")){
TextField("t1", text: $t1)
TextField("t2", text: $t2)
Stepper(value: $s1, in: 1...240){
Text("s1: \(s1)").onChange(of: s1, perform: { value in
playSound(sound: "sound1", volume: 0.3)
})
}
}
}.frame(minWidth: 0, idealWidth: 400, maxWidth:400, minHeight: 0, idealHeight: 100, maxHeight: 180, alignment: .center).border(Color.black, width: 7)
VStack()
{
NavigationLink(destination: otherView().onAppear{playSound(sound: "sound2")}, label: {
Text("label")
}).padding().background(Color.white).border(Color.black, width: 2).cornerRadius(3.0)
NavigationLink(destination: otherView2()) {
Text("label2").padding(5).background(Color.white).border(Color.black, width: 2).cornerRadius(3.0).offset(y:-5)
}
}
Spacer()
}
}
}.navigationBarTitle("").navigationBarHidden(true)
}
}