有时候我们需要跳转到某个网站上去。就需要使用到link了。
VStack{
Form{
//基础样式
if let 55mx = URL(string: "http://www.55mx.com/"){
Link("网络人",destination: 55mx)
}
//强制解包
Link("美食圈",destination: URL(string: "https://www.meishiq.com/")!)
}
.frame(height: 140)
//利用label设置样式
Link(destination: URL(string: "http://www.55mx.com/")!, label: {
Text("网络人")
.bold()
.frame(width: 200, height: 80)
.foregroundColor(.white)
.background(Color.black)
.cornerRadius(12)
})
Spacer()
}
除非注明,网络人的文章均为原创,转载请以链接形式标明本文地址:https://www.55mx.com/post/112
《【SwiftUI实战】使用Link跳转到网址》的网友评论(0)