12345678910111213141516171819202122 |
- //
- // XLFormInlineSegmentedCell.h
- // XLForm
- //
- // Created by mathias Claassen on 16/12/15.
- // Copyright © 2015 Xmartlabs. All rights reserved.
- //
- #import <XLForm/XLForm.h>
- extern NSString * const XLFormRowDescriptorTypeSegmentedInline;
- extern NSString * const XLFormRowDescriptorTypeSegmentedControl;
- @interface XLFormInlineSegmentedCell : XLFormBaseCell
- @end
- @interface XLFormInlineSegmentedControl : XLFormBaseCell<XLFormInlineRowDescriptorCell>
- @property (strong, nonatomic) UISegmentedControl* segmentedControl;
- @end
|