mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-24 19:38:54 -04:00
19 lines
364 B
Objective-C
19 lines
364 B
Objective-C
//
|
|
// FLEXArgumentInputTextView.h
|
|
// FLEXInjected
|
|
//
|
|
// Created by Ryan Olson on 6/15/14.
|
|
//
|
|
//
|
|
|
|
#import "FLEXArgumentInputView.h"
|
|
|
|
@interface FLEXArgumentInputTextView : FLEXArgumentInputView <UITextViewDelegate>
|
|
|
|
// For subclass eyes only
|
|
|
|
@property (nonatomic, readonly) UITextView *inputTextView;
|
|
@property (nonatomic) NSString *inputPlaceholderText;
|
|
|
|
@end
|