如何在数字键盘键盘中添加点?当我使用通知 UIKeyboardDidShowNotification 时,我希望 UIButton 出现在数字键盘键盘的左下方。
这将是按钮的框架:
let dotButton = UIButton(frame: CGRectMake(0, 162, view.frame.width/3, 54))
,但必须将其添加为数字键盘键盘的子视图以防止隐藏,该怎么做?
编辑:我让它看起来像这样
dotButton.addTarget(self, action: "addDot:", forControlEvents: .TouchUpInside)
dotButton.setTitle(".", forState: .Normal)
dotButton.titleLabel?.font = UIFont(name: "Helvetica Neue", size: 25)
dotButton.setTitleColor(UIColor.blackColor(), forState: .Normal)
dispatch_async(dispatch_get_main_queue(), {
let keyboardView:UIView = UIApplication.sharedApplication().windows.last?.subviews.first as! UIView
self.dotButton.frame = CGRectMake(0, keyboardView.frame.size.height-54, self.view.frame.width/3, 54)
keyboardView.addSubview(self.dotButton)
keyboardView.bringSubviewToFront(self.dotButton)
})
但现在我不知道当我点击按钮添加 . 在带有方法 addDot 的 textField 中,我不知道如何告诉 textField 添加一个 . 再次需要帮助...
Edit2:我创建了一个类变量,textFieldInEdit:UITextField!
并且func textFieldShouldBeginEditing(textField: UITextField) -> Bool
我这样做了textFieldInEdit = textField
,现在我的函数addDot
是:
textFieldWhichEdit.text = "\(textFieldWhichEdit.text)."
,
但我现在有另一个问题.. 我有不同键盘类型的字段如何检测出现哪个键盘并仅在数字键盘上显示点?
编辑3:
func textFieldDidBeginEditing(textField: UITextField) {
if(textField.keyboardType.rawValue==4){
textFieldWhichEdit = textField
dotButton.hidden = false
}else{
dotButton.hidden = true
}
}
完成我在数字键盘上做了一个点按钮:) 如果有人知道更好的方法可以写它,我会接受答案:)