You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
364 B

  1. //
  2. // FLEXArgumentInputTextView.h
  3. // FLEXInjected
  4. //
  5. // Created by Ryan Olson on 6/15/14.
  6. //
  7. //
  8. #import "FLEXArgumentInputView.h"
  9. @interface FLEXArgumentInputTextView : FLEXArgumentInputView <UITextViewDelegate>
  10. // For subclass eyes only
  11. @property (nonatomic, readonly) UITextView *inputTextView;
  12. @property (nonatomic) NSString *inputPlaceholderText;
  13. @end