iPad 键盘上有这个“撤消”键。
我有一个 UITextField *textField 其中 textField.placeholder = @"Input";
假设 textField 不为空(textField.text = @"Something";),当我触摸 textField 时,它变成了 firstResponder,
1,退格文本字段中的所有字符串(显示占位符) 2,键入其他内容 3,再次退格所有内容(显示占位符) 4,按“撤消”键
结果: textField.placeholder 与 textField.text 重叠显示。另外,没有调用 UITextFieldDelegate(shouldChangeCharactersInRange 和 UITextFieldTextDidChangeNotification)。
有人面临同样的问题吗?它在某种程度上是iOS错误吗?