mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
20 lines
307 B
Objective-C
20 lines
307 B
Objective-C
//
|
|
// AccessoryButton.h
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 9/22/18.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
IB_DESIGNABLE @interface BarButton : UIButton
|
|
|
|
@property (nonatomic) UIKeyboardAppearance keyAppearance;
|
|
@property IBInspectable BOOL secondary;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|