gpt4 book ai didi

ios - 如何将 SWIFTUI 按钮操作绑定(bind)到 View 模型操作或方法

转载 作者:行者123 更新时间:2023-12-01 21:41:21 24 4
gpt4 key购买 nike

我正在尝试绑定(bind) swiftui 按钮操作并收到类似 Cannot convert value of type 'Binding<() -> ()>' to expected argument type '() -> Void' 的错误
在 View 中

Button(action : $viewModel.action ) {
Text("Login")
}
在 View 模型中
class LoginViewModel: ObservableObject {

@Published var userid = ""
@Published var password = ""
@Published var selection : Int? = 0
//@Published var action : () -> void = {}
func action() {

}

}

最佳答案

您不需要在 Button 操作中进行绑定(bind),

Button(action : viewModel.action ) {     // << no $ here !!
Text("Login")
}
其他一切都应该没问题。

关于ios - 如何将 SWIFTUI 按钮操作绑定(bind)到 View 模型操作或方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62512538/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com