├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .swift-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Former-Demo ├── Former-Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Former-Demo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── appicon-60@2x.png │ │ ├── appicon-60@3x.png │ │ ├── appicon-Small-40@2x.png │ │ ├── appicon-Small-40@3x.png │ │ ├── appicon-Small@2x.png │ │ └── appicon-Small@3x.png │ ├── Contents.json │ ├── check.imageset │ │ ├── Contents.json │ │ └── ok2.png │ ├── header_logo.imageset │ │ ├── Contents.json │ │ └── header_logo.png │ └── start_logo.imageset │ │ ├── Contents.json │ │ └── start_logo.png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Cells │ ├── CenterLabelCell.swift │ ├── ColorListCell.swift │ ├── DynamicHeightCell.swift │ ├── ProfileFieldCell.swift │ ├── ProfileImageCell.swift │ └── ProfileLabelCell.swift │ ├── Commons │ ├── Login.swift │ └── Profile.swift │ ├── Controllers │ ├── AddEventViewController.swift │ ├── CustomCellViewController.swift │ ├── DefaultsViewController.swift │ ├── EditProfileViewController.swift │ ├── ExampleViewController.swift │ ├── LoginViewController.swift │ ├── TextSelectorViewContorller.swift │ └── TopViewController.swift │ ├── Helpers │ ├── String+FormerDemo.swift │ └── UIColor+FormerDemo.swift │ ├── Info.plist │ ├── Resources │ ├── ColorListCell.xib │ ├── DynamicHeightCell.xib │ ├── LoginViewController.storyboard │ ├── ProfileFieldCell.xib │ ├── ProfileImageCell.xib │ └── ProfileLabelCell.xib │ └── Views │ └── FormerInputAccessoryView.swift ├── Former.podspec ├── Former.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Former.xcscheme ├── Former ├── Cells │ ├── FormCell.swift │ ├── FormCheckCell.swift │ ├── FormDatePickerCell.swift │ ├── FormInlineDatePickerCell.swift │ ├── FormInlinePickerCell.swift │ ├── FormLabelCell.swift │ ├── FormPickerCell.swift │ ├── FormSegmentedCell.swift │ ├── FormSelectorDatePickerCell.swift │ ├── FormSelectorPickerCell.swift │ ├── FormSliderCell.swift │ ├── FormStepperCell.swift │ ├── FormSwitchCell.swift │ ├── FormTextFieldCell.swift │ └── FormTextViewCell.swift ├── Commons │ ├── Former.swift │ ├── FormerProtocol.swift │ ├── RowFormer.swift │ ├── SectionFormer.swift │ └── ViewFormer.swift ├── Controllers │ └── FormViewController.swift ├── Former.h ├── Helpers │ └── UITableViewCell+Former.swift ├── Info.plist ├── RowFormers │ ├── BaseRowFormer.swift │ ├── CheckRowFormer.swift │ ├── CustomRowFormer.swift │ ├── DatePickerRowFormer.swift │ ├── InlineDatePickerRowFormer.swift │ ├── InlinePickerRowFormer.swift │ ├── LabelRowFormer.swift │ ├── PickerRowFormer.swift │ ├── SegmentedRowFormer.swift │ ├── SelectorDatePickerRowFormer.swift │ ├── SelectorPickerRowFormer.swift │ ├── SliderRowFormer.swift │ ├── StepperRowFormer.swift │ ├── SwitchRowFormer.swift │ ├── TextFieldRowFormer.swift │ └── TextViewRowFormer.swift ├── ViewFormers │ ├── BaseViewFormer.swift │ ├── CustomViewFormer.swift │ └── LabelViewFormer.swift └── Views │ ├── FormHeaderFooterView.swift │ ├── FormLabelFooterView.swift │ └── FormLabelHeaderView.swift ├── LICENSE ├── Logo.png ├── Package.swift └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Former-Demo/Former-Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Former-Demo/Former-Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Former-Demo/Former-Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-60@2x.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-60@3x.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small-40@2x.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small-40@3x.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small@2x.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/AppIcon.appiconset/appicon-Small@3x.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/check.imageset/Contents.json -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/check.imageset/ok2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/check.imageset/ok2.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/header_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/header_logo.imageset/Contents.json -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/header_logo.imageset/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/header_logo.imageset/header_logo.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/start_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/start_logo.imageset/Contents.json -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Assets.xcassets/start_logo.imageset/start_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Assets.xcassets/start_logo.imageset/start_logo.png -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Cells/CenterLabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Cells/CenterLabelCell.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Cells/ColorListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Cells/ColorListCell.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Cells/DynamicHeightCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Cells/DynamicHeightCell.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Cells/ProfileFieldCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Cells/ProfileFieldCell.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Cells/ProfileImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Cells/ProfileImageCell.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Cells/ProfileLabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Cells/ProfileLabelCell.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Commons/Login.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Commons/Login.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Commons/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Commons/Profile.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/AddEventViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/AddEventViewController.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/CustomCellViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/CustomCellViewController.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/DefaultsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/DefaultsViewController.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/EditProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/EditProfileViewController.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/ExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/ExampleViewController.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/LoginViewController.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/TextSelectorViewContorller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/TextSelectorViewContorller.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Controllers/TopViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Controllers/TopViewController.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Helpers/String+FormerDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Helpers/String+FormerDemo.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Helpers/UIColor+FormerDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Helpers/UIColor+FormerDemo.swift -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Info.plist -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Resources/ColorListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Resources/ColorListCell.xib -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Resources/DynamicHeightCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Resources/DynamicHeightCell.xib -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Resources/LoginViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Resources/LoginViewController.storyboard -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Resources/ProfileFieldCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Resources/ProfileFieldCell.xib -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Resources/ProfileImageCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Resources/ProfileImageCell.xib -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Resources/ProfileLabelCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Resources/ProfileLabelCell.xib -------------------------------------------------------------------------------- /Former-Demo/Former-Demo/Views/FormerInputAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former-Demo/Former-Demo/Views/FormerInputAccessoryView.swift -------------------------------------------------------------------------------- /Former.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former.podspec -------------------------------------------------------------------------------- /Former.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Former.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Former.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Former.xcodeproj/xcshareddata/xcschemes/Former.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former.xcodeproj/xcshareddata/xcschemes/Former.xcscheme -------------------------------------------------------------------------------- /Former/Cells/FormCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormCheckCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormCheckCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormDatePickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormDatePickerCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormInlineDatePickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormInlineDatePickerCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormInlinePickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormInlinePickerCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormLabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormLabelCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormPickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormPickerCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormSegmentedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormSegmentedCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormSelectorDatePickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormSelectorDatePickerCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormSelectorPickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormSelectorPickerCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormSliderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormSliderCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormStepperCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormStepperCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormSwitchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormSwitchCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormTextFieldCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormTextFieldCell.swift -------------------------------------------------------------------------------- /Former/Cells/FormTextViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Cells/FormTextViewCell.swift -------------------------------------------------------------------------------- /Former/Commons/Former.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Commons/Former.swift -------------------------------------------------------------------------------- /Former/Commons/FormerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Commons/FormerProtocol.swift -------------------------------------------------------------------------------- /Former/Commons/RowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Commons/RowFormer.swift -------------------------------------------------------------------------------- /Former/Commons/SectionFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Commons/SectionFormer.swift -------------------------------------------------------------------------------- /Former/Commons/ViewFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Commons/ViewFormer.swift -------------------------------------------------------------------------------- /Former/Controllers/FormViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Controllers/FormViewController.swift -------------------------------------------------------------------------------- /Former/Former.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Former.h -------------------------------------------------------------------------------- /Former/Helpers/UITableViewCell+Former.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Helpers/UITableViewCell+Former.swift -------------------------------------------------------------------------------- /Former/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Info.plist -------------------------------------------------------------------------------- /Former/RowFormers/BaseRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/BaseRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/CheckRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/CheckRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/CustomRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/CustomRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/DatePickerRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/DatePickerRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/InlineDatePickerRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/InlineDatePickerRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/InlinePickerRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/InlinePickerRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/LabelRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/LabelRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/PickerRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/PickerRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/SegmentedRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/SegmentedRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/SelectorDatePickerRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/SelectorDatePickerRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/SelectorPickerRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/SelectorPickerRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/SliderRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/SliderRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/StepperRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/StepperRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/SwitchRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/SwitchRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/TextFieldRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/TextFieldRowFormer.swift -------------------------------------------------------------------------------- /Former/RowFormers/TextViewRowFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/RowFormers/TextViewRowFormer.swift -------------------------------------------------------------------------------- /Former/ViewFormers/BaseViewFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/ViewFormers/BaseViewFormer.swift -------------------------------------------------------------------------------- /Former/ViewFormers/CustomViewFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/ViewFormers/CustomViewFormer.swift -------------------------------------------------------------------------------- /Former/ViewFormers/LabelViewFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/ViewFormers/LabelViewFormer.swift -------------------------------------------------------------------------------- /Former/Views/FormHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Views/FormHeaderFooterView.swift -------------------------------------------------------------------------------- /Former/Views/FormLabelFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Views/FormLabelFooterView.swift -------------------------------------------------------------------------------- /Former/Views/FormLabelHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Former/Views/FormLabelHeaderView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Logo.png -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1028/Former/HEAD/README.md --------------------------------------------------------------------------------