I'm trying to set 10 buttons with the same font and style but don't want to create 10 IBOutlet
s. I've never used a collection before but I believe that is how I minimise code when working with outlets?
How can I put this code into a referencing outlet collection and apply it to all my buttons?
ViewController.h
IBOutlet UIButton *label;
ViewController.m (ViewDidLoad)
[label setFont:[UIFont fontWithName:@"CooperBlack" size:14]];