swift 判断点击了键盘上哪个键

 我来答
Aileen0509
2016-07-31 · TA获得超过1492个赞
知道小有建树答主
回答量:371
采纳率:0%
帮助的人:422万
展开全部

如果是 iOS 下的 TextField 的话,可以使用这个方法:

func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool

这个方法继承自 UITextFieldDelegate protocol

我这里写了个小 Demo,是一个 TableCell 里面创建的 TextFeild:

mport UIKit
class NameCell: UITableViewCell, UITextFieldDelegate {
    
    let nameTextField = UITextField()
    override init( style:UITableViewCellStyle, reuseIdentifier:String? ) {
        
        super.init( style:style, reuseIdentifier:reuseIdentifier )
        
        nameTextField.delegate = self
        
        nameTextField.frame.size.width = 100.0
        nameTextField.frame.size.height = 44.0
        nameTextField.placeholder = "placeholder"
        
        addSubview( nameTextField )
        
    }
    
    required init?( coder aDecoder:NSCoder ) {
        fatalError( "init(coder:) has no been implemented" )
    }
    
    func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool {
        print( string )
        return true
    }
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式