从自定义 iPhone 键盘读取字母

发布于 2024-07-29 12:38:51 字数 162 浏览 3 评论 0原文

我正在尝试构建一个为用户提供破译谜题的应用程序。 我已经遵循了有关如何向数字键盘添加小数的示例代码,并且效果很好。 我想扩展它,以便整个键盘都充满自定义图像。

是否有可能有一段代码,当用户按下某个符号时,iPhone 将其读取为“A”?

感谢您的任何和所有帮助。

I'm trying to build an app that is a code breaking puzzle for the user. I've followed sample code on how to add a decimal to the numeric keypad and it works great. I would like to expand this so the whole keyboard is filled with custom images.

Is it possible to have a piece of code that when the user presses on a symbol the iPhone reads it as an "A" for example?

Thanks for any and all help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

云巢 2024-08-05 12:39:01

添加到您的 UITextFieldDelegate (或 UITextViewDelegate):

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
  NSLOG(@"USER PRESS: %@", string);
}

Add to your UITextFieldDelegate (or UITextViewDelegate) :

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
  NSLOG(@"USER PRESS: %@", string);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文