如何将 UITextField 中的文本获取到 NSString 中?

发布于 2024-10-11 04:19:23 字数 211 浏览 1 评论 0原文

我尝试了各种方法,但都给了我警告。例如 userName = [NSString stringWithFormat:@"%@", [yournamefield stringValue]]; 这只是给了我一个警告

“UITextField”可能无法响应“-stringValue”

我该怎么做?

I've tried various methods, which all give me warnings. Such as userName = [NSString stringWithFormat:@"%@", [yournamefield stringValue]]; which just gives me a warning of

'UITextField' may not respond to '-stringValue'

How do i do this?

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

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

发布评论

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

评论(4

软糯酥胸 2024-10-18 04:19:23

使用 text 属性获取文本字段内的文本

NSString *name = yourNameField.text;

Get the text inside the text field using the text property

NSString *name = yourNameField.text;
只有一腔孤勇 2024-10-18 04:19:23

使用 UITextFieldtext 属性:

NSString *userName = yourNameField.text;

Use the text property of UITextField:

NSString *userName = yourNameField.text;
小清晰的声音 2024-10-18 04:19:23

怎么样:

userName = [NSString stringWithFormat:@"%@", yournamefield.text];

How about:

userName = [NSString stringWithFormat:@"%@", yournamefield.text];
江南月 2024-10-18 04:19:23

两种方式。
它是一个属性,任何属性值都可以像这样访问 -

  • yournamefield.text
  • [yournamefield text]

Two ways.
It is a property and any property value can be accessed like this -

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