18 lines
364 B
Objective-C
18 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
|