ViewController.h 468 B

123456789101112131415161718192021222324252627
  1. //
  2. // ViewController.h
  3. // g0blinTV
  4. //
  5. // Created by Kevin Bradley on 1/15/18.
  6. // Copyright © 2018 Sticktron. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //IB_DESIGNABLE
  10. @interface FocusedButton : UIButton
  11. @property(nonatomic, strong) UIColor *focusColor;
  12. @property(nonatomic, strong) UIColor *unfocusedColor;
  13. - (void)buttonColors:(UIColor *)focusedColor andUnfocused:(UIColor *)unfocusedColor;
  14. @end
  15. @interface ViewController : UIViewController
  16. @end