针对国际用户使用 iOS 模拟器进行测试

发布于 2024-11-19 17:55:00 字数 454 浏览 4 评论 0原文

这是一个菜鸟问题。

我有一个可以进行数字计算的应用程序。我支持不同的外语,并尽可能在 iOS 模拟器中测试它们。

最近,我收到了一位韩国用户的差评,其中的抱怨似乎达到了“只出现输入错误......某事......浮点......某事”的程度。在线翻译效果不太好。

现在,我的应用程序检查用户输入的输入,并在检测到对该特定输入字段无效的字符时显示“输入错误”消息。我检查输入的每个字符的 asc 值。也许这是问题的一部分。但另一方面,在任何输入语言中,asc 48 数字都不是零吗?

所以我的问题是......如果我将iOS模拟器设置为(比方说)韩语,测试我的应用程序(输入数字,进行计算等)并且它(看起来)工作得很好......那里有什么“真实的韩国世界”,我的应用程序可能不同意......或者我无法使用 iOS 模拟器进行测试/模拟。

叹!我希望有一种方式可以与留下评论的人进行交流……这会让生活变得更加轻松。

a noob question here.

I have an app that does number calculations. I support different foreign languages and try to test them in the iOS simulator as much as I can.

recently I got a bad review from a Korean user where the complaint seems to be something to the extent of "getting only input errors ... something ... floating point ... something". The online translation does not work that well.

now, my app checks the input entered by the user and displays "input error" message when it detects characters that are not valid for that particular input field. I check the asc value of each character entered. maybe this is part for the problem. but on the other hand isn't asc 48 number zero in ANY input language ?

so my question is ... if I setup the iOS simulator to (let's say) Korean language, test my application (enter numbers, make calculation, etc) and it (seemingly) works just fine ... what's out there "in the real Korean world" that my application might not be agreeing with ... or that I am unable to test/simulate with the iOS simulator.

sigh! I wish there was a way to communicate with people that leave reviews ... it would make life so much easier.

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

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

发布评论

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

评论(2

嘿咻 2024-11-26 17:55:00

您是否考虑过将设备设置为韩语进行测试?

Have you thought about setting your device to Korean for testing?

梦纸 2024-11-26 17:55:00

您只需确保该数字作为数字输出,而不是一些随机字符串。试试这个代码。

textfieldNumber = Int(textfield.value)

YOU could just make sure the number is output out as a number and not some random string. Try this code.

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