美文网首页
swiftUI 关于弹出警告框

swiftUI 关于弹出警告框

作者: Johnson_9d92 | 来源:发表于2022-02-07 16:32 被阅读0次

    swiftUI 关于弹出警告框

    在oc和swift中使用UIAlertController,集合 present函数,即可轻松实现弹框。
    在swiftUI中。

    import SwiftUI
    
    struct ContentView: View {
        @State private var showingAlert = false
        @State private var showingAlert1 = false
        var body: some View {
            VStack{
                Button("Show Alert") {
                    self.showingAlert = true
                }
                .alert(isPresented: $showingAlert) {
                    Alert(title: Text("Hello SwiftUI!"),
                          message: Text("This is some detail message"),
                          dismissButton: .default(Text("OK")))
                }
             }
        }
    }
    

    相关文章

      网友评论

          本文标题:swiftUI 关于弹出警告框

          本文链接:https://www.haomeiwen.com/subject/albmkrtx.html