使用 Xcode 的 iPad 应用程序,如何获取用户文本输入并将其显示在另一个文本字段中

发布于 2024-12-21 23:43:19 字数 223 浏览 1 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里寻她 2024-12-28 23:43:19

确保您的视图控制器是“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文