将scanf与NSStrings一起使用

将scanf与NSStrings一起使用

本文介绍了将scanf与NSStrings一起使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望用户输入一个字符串,然后将输入分配给NSString.现在,我的代码如下:

I want the user to input a string and then assign the input to an NSString. Right now my code looks like this:

NSString *word;

scanf("%s", &word);

推荐答案

scanf不适用于任何对象类型.如果您有一个C字符串并想从中创建一个NSString,请使用-[NSString initWithBytes:length:encoding:].

scanf does not work with any object types. If you have a C string and want to create an NSString from it, use -[NSString initWithBytes:length:encoding:].

这篇关于将scanf与NSStrings一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 09:24