我想在 SwiftUI 视图中通过 CocoaPods 使用这个项目 Toast-Swift。它是针对UIView的,所以我试图编写一个ViewController并将其包装到SwiftUI中,但结果屏幕上没有任何内容。
我的代码:
struct ToastView: UIViewControllerRepresentable{
@State var text: String
func makeUIViewController(context: UIViewControllerRepresentableContext<ToastView>) -> UIToast {
return UIToast(text: text)
}
func updateUIViewController(_ uiViewController: UIToast, context: UIViewControllerRepresentableContext<ToastView>) {
}
}
class UIToast: UIViewController{
var text: String = ""
init(text: String) {
super.init(nibName: nil, bundle: nil)
self.text = text
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad() {
super.viewDidLoad()
self.view.makeToast(text)
}
}
我在 SwiftUI 的 Toast 的 SO 上找到了一些自定义实现(SO 问题(,但它们的行为并不完全是我想要的。
有人可以帮我解决这个问题吗?在 SwiftUI 中对 Toast 有其他建议吗?提前感谢!
我把它放在这里给那些仍然使用 SwiftUI 寻找这个主题的人:
https://github.com/elai950/AlertToast
struct ContentView: View{
@State private var showAlert = false
var body: some View{
VStack{
Button("Show Alert"){
showAlert.toggle()
}
}
.toast(isPresenting: $showAlert){
// `.alert` is the default displayMode
AlertToast(displayMode: .alert, type: .regular, title: "Message Sent!")
//Choose .hud to toast alert from the top of the screen
//AlertToast(displayMode: .hud, type: .regular, title: "Message Sent!")
}
}
}
我不知道你是否已经解决了你的问题,但我在这里发布这个,以防有人感兴趣。我设法做到这一点,获取对场景管理器的引用,然后使用其rootViewController视图。使用此视图,您可以使用Toast_Swift 例:
Button(action: {
let scene = UIApplication.shared.connectedScenes.first
if let sceneDelegate : SceneDelegate = scene?.delegate as? SceneDelegate{
if let view = sceneDelegate.window?.rootViewController?.view{
view.makeToast("Text")
}
}
//...
希望对您有所帮助。
尝试使用此开源:https://github.com/huynguyencong/ToastSwiftUI .我发现它非常易于使用。
struct ContentView: View {
@State private var isShowingToast = false
var body: some View {
VStack(spacing: 20) {
Button("Show toast") {
self.isShowingToast = true
}
Spacer()
}
.padding()
// Just add a modifier to show a toast, with binding variable to control
.toast(isPresenting: $isShowingToast, dismissType: .after(3)) {
ToastView(message: "Hello world!", icon: .info)
}
}
}
你可以试试这个来展示吐司和Toast_Swift
if let view = UIApplication.shared.windows[0].rootViewController?.view {
view.makeToast("text)
}