FLEXFieldEditorViewController.h 782 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FLEXFieldEditorViewController.h
  3. // Flipboard
  4. //
  5. // Created by Ryan Olson on 5/16/14.
  6. // Copyright (c) 2014 Flipboard. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class FLEXFieldEditorView;
  10. @class FLEXArgumentInputView;
  11. @interface FLEXFieldEditorViewController : UIViewController
  12. - (id)initWithTarget:(id)target;
  13. // Convenience accessor since many subclasses only use one input view
  14. @property (nonatomic, readonly) FLEXArgumentInputView *firstInputView;
  15. // For subclass use only.
  16. @property (nonatomic, strong, readonly) id target;
  17. @property (nonatomic, strong, readonly) FLEXFieldEditorView *fieldEditorView;
  18. @property (nonatomic, strong, readonly) UIBarButtonItem *setterButton;
  19. - (void)actionButtonPressed:(id)sender;
  20. - (NSString *)titleForActionButton;
  21. @end