FLEXArgumentInputViewFactory.h 699 B

1234567891011121314151617181920212223
  1. //
  2. // FLEXArgumentInputViewFactory.h
  3. // FLEXInjected
  4. //
  5. // Created by Ryan Olson on 6/15/14.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class FLEXArgumentInputView;
  10. @interface FLEXArgumentInputViewFactory : NSObject
  11. /// The main factory method for making argument input view subclasses that are the best fit for the type.
  12. + (FLEXArgumentInputView *)argumentInputViewForTypeEncoding:(const char *)typeEncoding;
  13. /// A way to check if we should try editing a filed given its type encoding and value.
  14. /// Useful when deciding whether to edit or explore a property, ivar, or NSUserDefaults value.
  15. + (BOOL)canEditFieldWithTypeEncoding:(const char *)typeEncoding currentValue:(id)currentValue;
  16. @end