How do I get the text from UITextField into an NSString?
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 '-stringVa开发者_StackOverflow社区lue'
How do i do this?
Get the text inside the text field using the text
property
NSString *name = yourNameField.text;
Use the text
property of UITextField
:
NSString *userName = yourNameField.text;
How about:
userName = [NSString stringWithFormat:@"%@", yournamefield.text];
Two ways. It is a property and any property value can be accessed like this -
yournamefield.text
[yournamefield text]
精彩评论