I have a view with 10 buttons each named Q1, Q2... Q10.
In another method I want to change the background image on the buttons however I am creating the button names from a string as such:
NSString *Q = [NSString stringWithFormat:@"Q%d", i];
i is a integer which changes, is there any way I can access the UIButtons using the string Q so that I can then change the background image.