123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #import "XLForm.h"
- NSString *const XLFormRowDescriptorTypeText = @"text";
- NSString *const XLFormRowDescriptorTypeName = @"name";
- NSString *const XLFormRowDescriptorTypeURL = @"url";
- NSString *const XLFormRowDescriptorTypeEmail = @"email";
- NSString *const XLFormRowDescriptorTypePassword = @"password";
- NSString *const XLFormRowDescriptorTypeNumber = @"number";
- NSString *const XLFormRowDescriptorTypePhone = @"phone";
- NSString *const XLFormRowDescriptorTypeTwitter = @"twitter";
- NSString *const XLFormRowDescriptorTypeAccount = @"account";
- NSString *const XLFormRowDescriptorTypeInteger = @"integer";
- NSString *const XLFormRowDescriptorTypeImage = @"image";
- NSString *const XLFormRowDescriptorTypeDecimal = @"decimal";
- NSString *const XLFormRowDescriptorTypeTextView = @"textView";
- NSString *const XLFormRowDescriptorTypeZipCode = @"zipCode";
- NSString *const XLFormRowDescriptorTypeSelectorPush = @"selectorPush";
- NSString *const XLFormRowDescriptorTypeSelectorPopover = @"selectorPopover";
- NSString *const XLFormRowDescriptorTypeSelectorActionSheet = @"selectorActionSheet";
- NSString *const XLFormRowDescriptorTypeSelectorAlertView = @"selectorAlertView";
- NSString *const XLFormRowDescriptorTypeSelectorPickerView = @"selectorPickerView";
- NSString *const XLFormRowDescriptorTypeSelectorPickerViewInline = @"selectorPickerViewInline";
- NSString *const XLFormRowDescriptorTypeMultipleSelector = @"multipleSelector";
- NSString *const XLFormRowDescriptorTypeMultipleSelectorPopover = @"multipleSelectorPopover";
- NSString *const XLFormRowDescriptorTypeSelectorLeftRight = @"selectorLeftRight";
- NSString *const XLFormRowDescriptorTypeSelectorSegmentedControl = @"selectorSegmentedControl";
- NSString *const XLFormRowDescriptorTypeDateInline = @"dateInline";
- NSString *const XLFormRowDescriptorTypeDateTimeInline = @"datetimeInline";
- NSString *const XLFormRowDescriptorTypeTimeInline = @"timeInline";
- NSString *const XLFormRowDescriptorTypeCountDownTimerInline = @"countDownTimerInline";
- NSString *const XLFormRowDescriptorTypeDate = @"date";
- NSString *const XLFormRowDescriptorTypeDateTime = @"datetime";
- NSString *const XLFormRowDescriptorTypeTime = @"time";
- NSString *const XLFormRowDescriptorTypeCountDownTimer = @"countDownTimer";
- NSString *const XLFormRowDescriptorTypeDatePicker = @"datePicker";
- NSString *const XLFormRowDescriptorTypePicker = @"picker";
- NSString *const XLFormRowDescriptorTypeSlider = @"slider";
- NSString *const XLFormRowDescriptorTypeBooleanCheck = @"booleanCheck";
- NSString *const XLFormRowDescriptorTypeBooleanSwitch = @"booleanSwitch";
- NSString *const XLFormRowDescriptorTypeButton = @"button";
- NSString *const XLFormRowDescriptorTypeInfo = @"info";
- NSString *const XLFormRowDescriptorTypeStepCounter = @"stepCounter";
|