如何获取 NSString 的 inout ?

发布于 2024-11-16 06:48:22 字数 70 浏览 5 评论 0原文

scanf ("%@", &str); 不起作用时,如何从 NSString 获取输入?

How to get input from an NSString as scanf ("%@", &str); doesn't work?

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

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

发布评论

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

评论(1

自由范儿 2024-11-23 06:48:22

scanf 将读入 C 字符串而不是 NSString (据我所知)。因此,要做你想做的事情,你需要首先将输入读入 C 字符串(即 str),然后将其转换为 NString,如下所示顺便说一下

myString = [NSString stringWithUTF8String:str];

,你不需要传递 str 的地址ie &str 如果 str 是一个数组。只需执行以下操作:

scanf("%s",str);

scanf will read into a C string and not into a NSString (as far as I know). So, to do what you're trying to do you need to first read your input into a C string (i.e. str) and then make that into an NString as follows

myString = [NSString stringWithUTF8String:str];

By the way, you don't need to pass the address of str i.e. &str if str is an array. Simply do:

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