I have 39 different UIButton variables in my .h file, but I would like to add each of them to an array without having to type out the same thing 39 times.
You could create a getter method named after each button and than call [self valueForKey:]; for each but something here just screams "terrible design" :)