Objective-C —文本字段到字符串数组

发布于 2024-10-31 13:19:24 字数 195 浏览 3 评论 0原文

我有这个并且它有效:

[pole insertObject: [NSString stringWithFormat:@"%s",[textfield text]] atIndex:idpole];

但这不会保存到文本字段中的字符串,而是保存一些数字或其他未指定的字符。我该怎么做才能保存文本字段中的真实文本?

I have this and it works:

[pole insertObject: [NSString stringWithFormat:@"%s",[textfield text]] atIndex:idpole];

But this doesn't save to string what is in the texfield, but some numbers or other unspecified characters. What can I do, to save real text from a textfield?

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

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

发布评论

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

评论(4

葬花如无物 2024-11-07 13:19:24

无需创建新字符串:

[pole insertObject: [textfield text] atIndex:idpole];

或者如果您想确保该字符串是一个新对象:

[pole insertObject: [NSString stringWithString:[textfield text]] atIndex:idpole];

There is no need to create a new string:

[pole insertObject: [textfield text] atIndex:idpole];

Or if you want to make sure the the string a new object:

[pole insertObject: [NSString stringWithString:[textfield text]] atIndex:idpole];
财迷小姐 2024-11-07 13:19:24

尝试:

[pole insertObject:[textfield text] atIndex:idpole];

Try:

[pole insertObject:[textfield text] atIndex:idpole];
俏︾媚 2024-11-07 13:19:24
[pole insertObject: [NSString stringWithFormat:@"%@",[textfield text]] atIndex:idpole];

    NSlog(@"%@",pole);
[pole insertObject: [NSString stringWithFormat:@"%@",[textfield text]] atIndex:idpole];

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