UITextField 文本属性返回随机整数
当我尝试获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我认为你要么得到文本所在的内存地址的某种表示,要么只是一些废话。
您应该尝试这样做:
问题是您正在使用的格式化程序。
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:
The problem is the formatter you are using.