我尝试了很多带有完成按钮的数字键盘,但在SWIFT 2.0中找不到正确的答案。

最佳答案

您可以使用工具栏在键盘上方添加完成按钮

override func viewDidLoad() {
    super.viewDidLoad()
    let tooBar: UIToolbar = UIToolbar()
    tooBar.barStyle = UIBarStyle.BlackTranslucent
    tooBar.items=[
        UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.FlexibleSpace, target: self, action: nil),
        UIBarButtonItem(title: "Done", style: UIBarButtonItemStyle.Done, target: self, action: "donePressed")]
    tooBar.sizeToFit()
    yourTextFeild.inputAccessoryView = tooBar
}

func donePressed () {
    yourTextFeild.resignFirstResponder()
}

看起来像这样

ios - 在Swift 2.0中如何用完成按钮完成数字小键盘?-LMLPHP

10-04 12:32