一次打印所有字符,objective-c

发布于 2024-10-30 10:41:28 字数 146 浏览 3 评论 0原文

我有一个关于字符打印的问题
假设程序的输出是
一个
b
c
d
如何在输出行上一次打印所有内容?如果我需要将其输出到 iPhone 上的特定标签字段中,该怎么办?

任何形式的帮助表示赞赏。

提前致谢

I have a question regarding printing of characters
Suppose, the output of a program is
a
b
c
d
How do i print all of them at once on the output line? and if I need to output that in a particular label field on iphone, how can that be done?

Any kind of help is appreciated.

Thanks in advance

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

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

发布评论

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

评论(1

ι不睡觉的鱼゛ 2024-11-06 10:41:28

您可以使用程序的输出构造一个 NSString 并记录它或将其用于标签的文本?

// Assuming the variable a, b, c, and d contain your program's output.
NSString *output = [NSString stringWithFormat:@"%@ %@ %@ %@", a, b, c, d];

You can construct an NSString using your program's output and log it or use it for the label's text?

// Assuming the variable a, b, c, and d contain your program's output.
NSString *output = [NSString stringWithFormat:@"%@ %@ %@ %@", a, b, c, d];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文