[Solved] Styling a button that was created in interface builder

This is actually really easy. You just have to create a @property and connect the button you want to style by control dragging from the button to the newly created property. The property should look something like this: @property (nonatomic, strong) IBOutlet UIButton *registerButton; Then in the viewDidLoad, you put the above code that targets … Read more