将函数参数传递到Swift中的选择器中



我总共有五个拾取器。我想为它们中的每一个创建一个done按钮。我想为每个人使用不同的选择器来执行不同的操作。为了设置done按钮,我试图对所有按钮使用相同的方法,但我不知道如何将函数参数传递到Swift中的选择器中。

func createDoneButton(txtField: UITextField, donePressed: /* What do I need here? */) {
let toolbar = UIToolbar() // create toolbar
toolbar.sizeToFit() // toolbar fits the size of the screen

let doneBtn = UIBarButtonItem(barButtonSystemItem: .done, target: nil, action: #selector(donePressed)) // action when the done button was pressed
toolbar.setItems([doneBtn], animated: true)
txtField.inputAccessoryView = toolbar
}

您可以在问题中找到答案:(只需使用Selector参数类型,无需#selector()

func createDoneButton(txtField: UITextField, donePressed: Selector){
let toolbar = UIToolbar() // create toolbar
toolbar.sizeToFit() // toolbar fits the size of the screen
let doneBtn = UIBarButtonItem(barButtonSystemItem: .done, target: nil, action: donePressed) // action when the done button was pressed
toolbar.setItems([doneBtn], animated: true)
txtField.inputAccessoryView = toolbar
}

最新更新