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?
|
I've tried various methods, which all give me warnings. Such as
How do i do this? |
||||
|
Get the text inside the text field using the
|
|||||||||||
|
|
Try userName = [NSString stringWithString:youNameField.text]; |
|||
|
How about:
|
|||
-stringValueis a method ofNSTextField– NSGod Jan 11 '11 at 18:45