FLEXArgumentInputTextView.h 519 B

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