// // ViewController.h // g0blinTV // // Created by Kevin Bradley on 1/15/18. // Copyright © 2018 Sticktron. All rights reserved. // #import //IB_DESIGNABLE @interface FocusedButton : UIButton @property(nonatomic, strong) UIColor *focusColor; @property(nonatomic, strong) UIColor *unfocusedColor; - (void)buttonColors:(UIColor *)focusedColor andUnfocused:(UIColor *)unfocusedColor; @end @interface ViewController : UIViewController @end