123456789101112131415161718192021222324252627 |
- //
- // ViewController.h
- // g0blinTV
- //
- // Created by Kevin Bradley on 1/15/18.
- // Copyright © 2018 Sticktron. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //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
|