如果需要,我想传递一个函数在完成块内调用,但我不知道如何为函数设置默认参数。
func showAlert(controllerTitle: String, message: String, actionTitle: String, preferredStyle: UIAlertControllerStyle = .alert, actionStyle: UIAlertActionStyle = .default, funcToCall: () -> ()){
let alert = UIAlertController(title: controllerTitle, message: message, preferredStyle: preferredStyle)
alert.addAction(UIAlertAction(title: actionTitle, style: actionStyle, handler: {(action) -> Void in
funcToCall()
}))
self.present(alert, animated: true, completion: {() -> Void in })
}
答案 0 :(得分:0)
您可以将默认参数传递给类似的函数
func functionToCall(message: String = "You message") {
print(message)
}
答案 1 :(得分:0)
首先,问题应该提供尽可能具体的代码块。
那么,你有一个函数foo
接受一个类型为closure的参数,你想提供一个default value
权利吗?
这是代码
func foo(completion: ()->() = { _ in print("Default completion") }) {
completion()
}
现在你可以调用foo
传递你自己的关闭
foo { print("Hello world") } // Hello world
或使用默认参数
foo() // Default completion
答案 2 :(得分:0)
我已移除showAlert
中的所有参数,但funcToCall
只是为了显示如何为函数提供默认参数:
extension UIViewController {
private static func defaultFuncToCall() {
//
}
func showAlert(funcToCall: @escaping () -> () = UIViewController.defaultFuncToCall) {
//
}
}