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