当我点击自定义键盘中的UIButton时,我想编辑我的customKeyboard。 我已经在键盘中添加了一个UIButton,代码如下:
gridControlDocument.DataSource =
new BindingList<Document>(_documentRepository
.Get()
.Where(i => EntityFunctions.TruncateTime(i.SubmitDateTime)==subDateTime)
.ToList()) { AllowNew = true };
答案 0 :(得分:0)
您可以为特定的textField重新设置键盘,例如
[yourTextfield resignFirstResponder];
所以,试试吧。您可以为按钮和文本字段设置相同的标记以标识特定的文本字段。