使用 Xcode 的 iPad 应用程序,如何获取用户文本输入并将其显示在另一个文本字段中
我对 iOS 编码相当陌生,正在尝试制作一个应用程序,当用户输入某些文本时,应用程序会以 ASCII 艺术形式输出文本。
我只是想知道如何让应用程序在用户键入“The”时意识到它必须意识到有一个 T
一个 H
和一个 >E
并输出一定的字符列表。
我正在为 iPad 制作这个,使用“选项卡式应用程序”预制工作区。
I am rather new to iOS coding and am trying to make an application where when the user types in some text the app output their text in ASCII art.
I just want to know how I can get the app to realise when the user types "The" that it has to realise that there is a T
a H
and an E
and put out a certain list of characters.
I am making this for the iPad, using a "Tabbed application" pre-made workspace.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您的视图控制器是“entry”文本字段的委托。实施
textField:shouldChangeCharactersInRange:replacementString:
并对“art”文本字段的字符串进行等效更改。确保最后返回 YES,以便可以实际更新输入文本字段。Make sure your viewcontroller is the delegate of the "entry" text field. Implement
textField:shouldChangeCharactersInRange:replacementString:
and make the equivalent changes to the string of your "art" text field. Make sure you return YES at the end so that the entry text field can actually be updated.