ish/app/TerminalView.h
Theodore Dubois ca909d93c4 Barely conform to UITextInput
Fixes Braille input and long press on backspace.

Fixed #519, fixed #465
2019-10-19 16:19:05 -07:00

21 lines
440 B
Objective-C

//
// TerminalView.h
// iSH
//
// Created by Theodore Dubois on 11/3/17.
//
#import <UIKit/UIKit.h>
#import "Terminal.h"
@interface TerminalView : UIView <UITextInput, WKScriptMessageHandler, UIScrollViewDelegate>
@property (nonatomic) UIKeyboardAppearance keyboardAppearance;
@property (weak) IBOutlet UIInputView *inputAccessoryView;
@property (weak) IBOutlet UIButton *controlKey;
@property (nonatomic) Terminal *terminal;
@end