FLEXArgumentInputView.h 497 B

1234567891011121314151617181920
  1. //
  2. // FLEXArgumentInputView.h
  3. // Flipboard
  4. //
  5. // Created by Ryan Olson on 5/30/14.
  6. // Copyright (c) 2014 Flipboard. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FLEXArgumentInputView : UIView
  10. @property (nonatomic, copy) NSString *title;
  11. @property (nonatomic, copy) NSString *inputText;
  12. @property (nonatomic, assign) UIKeyboardType keyboardType;
  13. @property (nonatomic, readonly) BOOL inputViewIsFirstResponder;
  14. @property (nonatomic, assign) NSUInteger numberOfInputLines;
  15. @end