mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
28 lines
456 B
Objective-C
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
|