Hi,
i want to set the name of an object like UIButton from a string.
NSString *string = [[NSString alloc] initWithString:@"someString"];
UIButton *(string) = [[UIButton buttonWithType:UIButtonTypeCustom]retain];
My goal is:
UIButton *someString = [[UIButton buttonWithType:UIButtonTypeCustom]retain];
how can i solve this?