ish/app/ArrowBarButton.h
2018-12-27 18:45:03 -08:00

28 lines
441 B
Objective-C

//
// ArrowBarButton.h
// iSH
//
// Created by Theodore Dubois on 9/23/18.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
typedef enum : NSUInteger {
ArrowNone = 0,
ArrowUp,
ArrowDown,
ArrowLeft,
ArrowRight,
} ArrowDirection;
@interface ArrowBarButton : UIControl
@property (nonatomic, readonly) ArrowDirection direction;
@property (nonatomic) UIKeyboardAppearance keyAppearance;
@end
NS_ASSUME_NONNULL_END