UITextField 文本属性返回随机整数

发布于 2024-08-30 07:56:38 字数 218 浏览 1 评论 0原文

当我尝试获取 UITextField 的文本时,它返回一个随机整数。这是我使用的代码:

NSLog(@"Field Text: %d", field.text);

field 是 UITextField。在调试器中,当 UITextField 中有文本时,它会返回一个随机数,例如 29876208

When I try to get the text of a UITextField it returns a random integer. Here's the code I used:

NSLog(@"Field Text: %d", field.text);

field being the UITextField. And in the debugger it returns an random number, for example 29876208 when there is text in the UITextField.

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

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

发布评论

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

评论(1

羁〃客ぐ 2024-09-06 07:56:38

嗯,我认为你要么得到文本所在的内存地址的某种表示,要么只是一些废话。

您应该尝试这样做:

NSLog(@"Field text : %@", field.text);

问题是您正在使用的格式化程序。

Euhm, I think you are either getting back some kind of representation of the memory address the text is located, or just some bull-sh*t.

You should try to do this:

NSLog(@"Field text : %@", field.text);

The problem is the formatter you are using.

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