XLFormInlineSegmentedCell.h 532 B

12345678910111213141516171819202122
  1. //
  2. // XLFormInlineSegmentedCell.h
  3. // XLForm
  4. //
  5. // Created by mathias Claassen on 16/12/15.
  6. // Copyright © 2015 Xmartlabs. All rights reserved.
  7. //
  8. #import <XLForm/XLForm.h>
  9. extern NSString * const XLFormRowDescriptorTypeSegmentedInline;
  10. extern NSString * const XLFormRowDescriptorTypeSegmentedControl;
  11. @interface XLFormInlineSegmentedCell : XLFormBaseCell
  12. @end
  13. @interface XLFormInlineSegmentedControl : XLFormBaseCell<XLFormInlineRowDescriptorCell>
  14. @property (strong, nonatomic) UISegmentedControl* segmentedControl;
  15. @end