如何将 UITextField 中的文本获取到 NSString 中?
我尝试了各种方法,但都给了我警告。例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
text
属性获取文本字段内的文本Get the text inside the text field using the
text
property使用
UITextField
的text
属性:Use the
text
property ofUITextField
:怎么样:
How about:
两种方式。
它是一个属性,任何属性值都可以像这样访问 -
yournamefield.text
[yournamefield text]
Two ways.
It is a property and any property value can be accessed like this -
yournamefield.text
[yournamefield text]