从 UITextField 生成 NSString

发布于 2024-11-27 09:57:32 字数 231 浏览 0 评论 0原文

我需要生成一个以 UITextField 命名的 NSString。然后我还需要能够使用这个字符串。有人有任何想法做这样的事情吗?

谢谢, Jacob

编辑:

用户将输入他/她的名字。然后该名称将生成为 NSString - 这将是字符串名称。就像你会说的那样,

NSString *NAME;

我需要将字符串命名为无论名称是什么。

i need to generate a NSString named after a UITextField..Then i also need to be able to use this string. anyone have any kind of idea to do something like this?

Thanks,
Jacob

Edit:

The user will type in his/her name..this name will then be generated into a NSString--It will be the strings name. Like how you would say

NSString *NAME;

i need the string to be named whatever there name is.

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

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

发布评论

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

评论(1

乖不如嘢 2024-12-04 09:57:32

您的意思是以下内容吗?

NSString *myString = [[myUITextField stringValue] retain];

Do you mean the following?

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