我的场景,我正在尝试创建按钮单击以打开UIPickerView
并选择选择器数据以使用 swift 在按钮标题上显示。在这里,Toolbar
我还想添加到 pickerview 控制器中。
let button = UIButton(type: .custom)
button.setTitle("",for: .normal)
button.frame = CGRect(x: CGFloat(amount_textfield.frame.size.width - 9), y: CGFloat(5), width: CGFloat(9), height: CGFloat(20))
button.addTarget(self, action: #selector(self.refresh), for: .touchUpInside)
amount_textfield.leftView = button
amount_textfield.leftViewMode = .always
@IBAction func refresh(_ sender: Any) {
// Here, I need to execute picker view
}