从退格键中删除文本
我找不到执行此操作的教程。我有...
UIbutton
UItext.text
我想制作自己的键盘用户界面,无需 iPhone 键盘。我想从文本中按 UI 按钮(键盘“删除”键或退格键)。不像 UIText.text = @""
那样简化整个事情。我见过程序员给出错误的代码。我正在寻找类似 Visual Basic Sendkeys {Delete}
的东西。如何在 iPhone 按钮上执行此操作? http://gigaom.com/apple/iphone-os- where-the-delete-key-belongs/
例如:
Text1
Text<=
Tex<=
I can't find tutorial that does this. I have...
UIbutton
UItext.text
I want to make my own KEYBOARD user interface without iphone keyboard. I want to press the UIbutton(keyboard "delete" key or backspace) from text. Not ease the whole thing like UIText.text = @""
. I've seen programmers give the wrong code. I'm looking for something like Visual Basic Sendkeys {Delete}
. How do I do this on iphone button? http://gigaom.com/apple/iphone-os-where-the-delete-key-belongs/
For example:
Text1
Text<=
Tex<=
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实现以下方法删除最后一个字符。
然后,您可以在文本字段的文本属性上使用它,例如:
Implement the following method to delete the last character.
You can then use that on your text field's text property e.g: