swift中swiftui的作用是什么,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
import SwiftUI import MapKit struct MapView: UIViewRepresentable { func makeUIView(context: Context) -> MKMapView { return MKMapView(frame: .zero) } func updateUIView(_ uiView: MKMapView, context: Context) { let location = CLLocationCoordinate2D(latitude: 30.5, longitude: 114.3) let span = MKCoordinateSpan(latitudeDelta: 0.5, longitudeDelta: 0.5) let region = MKCoordinateRegion(center: location, span: span) uiView.setRegion(region, animated: true) } } struct MapView_Previews: PreviewProvider { static var previews: some View { MapView() } }
import SwiftUI struct CircleImage: View { var body: some View { Image("hhl") .frame(width: 200, height: 200, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/) .clipShape(/*@START_MENU_TOKEN@*/Circle()/*@END_MENU_TOKEN@*/) .overlay(Circle().stroke(Color.white, lineWidth: 4)) .shadow(radius: /*@START_MENU_TOKEN@*/10/*@END_MENU_TOKEN@*/) } } struct CircleImage_Previews: PreviewProvider { static var previews: some View { CircleImage() } }
import SwiftUI struct ContentView: View { var body: some View { VStack{ MapView().edgesIgnoringSafeArea(/*@START_MENU_TOKEN@*/.all/*@END_MENU_TOKEN@*/).frame(height: 300) CircleImage().offset(y: -130).padding(.bottom, -130) VStack(alignment: .leading) { Text("黄鹤楼").font(.title).padding(.bottom, 5) HStack { Text("天下江山第一楼").font(.subheadline) Spacer() Text("武汉").font(.subheadline) } }.padding() Spacer() } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { Group { ContentView() } } }
关于swift中swiftui的作用是什么问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。