mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-24 19:38:55 -04:00
19 lines
391 B
Objective-C
19 lines
391 B
Objective-C
//
|
|
// FLEXKeyboardToolbar.h
|
|
// FLEX
|
|
//
|
|
// Created by Tanner on 6/11/17.
|
|
// Copyright © 2017 Tanner Bennett. All rights reserved.
|
|
//
|
|
|
|
#import "FLEXKBToolbarButton.h"
|
|
|
|
@interface FLEXKeyboardToolbar : UIView
|
|
|
|
+ (instancetype)toolbarWithButtons:(NSArray *)buttons;
|
|
|
|
@property (nonatomic) NSArray<FLEXKBToolbarButton*> *buttons;
|
|
@property (nonatomic) UIKeyboardAppearance appearance;
|
|
|
|
@end
|