In objective-c is there a way to dynamically create a variable name. Like I pass a string into a method and the method creates an NSString whos name is the string that was passed in. Something like
-(void)create:(NSString *)str{
NSString *[NSString stringWithFormat:@"%@", str];
}
Or maybe there is a way to change an already existing variables name.
NSString *password;
password.name = entryPassword;