怎样把字母表打出来呢?

发布于 2024-12-15 16:03:04 字数 587 浏览 0 评论 0原文

有什么方法可以在 iOS 中显示字母表吗?
我想用字母表中的所有字母填充表格。
还有其他字母。 任何在没有任何扩展或其他东西的情况下做到这一点的建议。别的 ??

如果有任何方法可以通过扩展来实现此目的,请告诉我:)

编辑 1:
谢谢卡洛斯·基亚里(Carlos Chiari),这是我的解决方案:

int asciiCode = 65;

for (asciiCode=65; asciiCode<=90; asciiCode++) {
    NSString *string = [NSString stringWithFormat:@"%c", asciiCode];
    NSLog(@"%@", string);
}

在这里找到并放入 for 条件: 如何将 ASCII 值转换为Objective-C 中的一个角色?

is there any way to put out the alphabet in iOS?
I want to populate a table with all the letters of an alphabet.
And also other alphabets.
Any suggestion to do that without any extensions or smth. else ??

If any way to do so with an extension, please let me know :)

Edit 1:
Thank you Carlos Chiari, here is my solution:

int asciiCode = 65;

for (asciiCode=65; asciiCode<=90; asciiCode++) {
    NSString *string = [NSString stringWithFormat:@"%c", asciiCode];
    NSLog(@"%@", string);
}

found here and just putted in a for condition:
How to convert ASCII value to a character in Objective-C?

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

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

发布评论

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

评论(1

南冥有猫 2024-12-22 16:03:04

由于我有一段时间没有使用 iOS,所以不确定确切的语法,但只是循环遍历 A - Z 中的不同 ASCII 字符。
例如在.Net中,类似于

For i as Integer = 65 To 90
  Label.Text &= Char(i)
Next i

Char(i)打印带有ASCII代码“i”的字符,大写A的ASCII代码是65。大写Z的ASCII代码是90。所以我从65循环到90,这给了我 AZ。
希望这有帮助:)

Not sure about the exact syntax since I haven't played with iOS in a while, but just loop through the different ASCII characters from A - Z.
For instance in .Net it would be something like

For i as Integer = 65 To 90
  Label.Text &= Char(i)
Next i

Char(i) prints the character with ASCII code "i", ASCII code for capital A is 65. ASCII code for capital Z is 90. So i loop through it from 65 to 90, which gives me A-Z.
Hope this helps :)

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