一次打印所有字符,objective-c
我有一个关于字符打印的问题
假设程序的输出是
一个
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用程序的输出构造一个 NSString 并记录它或将其用于标签的文本?
You can construct an
NSString
using your program's output and log it or use it for the label's text?