I want to create a string to use in place of the name of a button.
For example, I want to set the background of a button programmatically. But I want the name to come from a string variable. That way, if I want to change the background image of a button called Button1, I could put "Button1" into my NSString and call it myButton...and then reference the actual Button1 as "myButton"
How would I do this?