generate NSString off of UITextField
i need to开发者_StackOverflow社区 generate a NSString named after a UITextField..Then i also need to be able to use this string. anyone have any kind of idea to do something like this?
Thanks, Jacob
Edit:
The user will type in his/her name..this name will then be generated into a NSString--It will be the strings name. Like how you would say
NSString *NAME;
i need the string to be named whatever there name is.
Do you mean the following?
NSString *myString = [[myUITextField stringValue] retain];
精彩评论