尝试在SwiftUI中将图像设置为我的视图的背景。使用Xcode 12 beta和iOS 14。
struct ContentView: View {
var body: some View {
ZStack {
Image("background")
.resizable()
.scaledToFill()
.frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height, alignment: .center)
.clipped()
}
}
}
输出
答案 0 :(得分:2)
以下内容就足够了(通过Xcode 11.4 / iOS 13.4测试)
var body: some View {
ZStack {
Image("background")
.resizable()
.scaledToFill()
.edgesIgnoringSafeArea(.all)
}
}