ish/app/ArrowBarButton.h
2018-09-24 10:21:03 -07:00

28 lines
456 B
Objective-C

//
// ArrowBarButton.h
// iSH
//
// Created by Theodore Dubois on 9/23/18.
//
#import "BarButton.h"
NS_ASSUME_NONNULL_BEGIN
typedef enum : NSUInteger {
ArrowNone = 0,
ArrowUp,
ArrowDown,
ArrowLeft,
ArrowRight,
} ArrowDirection;
IB_DESIGNABLE @interface ArrowBarButton : UIControl
@property (nonatomic, readonly) ArrowDirection direction;
@property IBInspectable UIColor *highlightedBackgroundColor;
@end
NS_ASSUME_NONNULL_END