├── .gitignore ├── LICENSE ├── LUNSegmentedControl ├── LUNSegmentedControl.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── LUNSegmentedControl │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── background.imageset │ │ │ ├── Contents.json │ │ │ └── background.png │ │ ├── label.imageset │ │ │ ├── Contents.json │ │ │ └── SWITCHER.png │ │ ├── rectangle.imageset │ │ │ ├── Contents.json │ │ │ └── rectangle.png │ │ ├── selected.imageset │ │ │ ├── Contents.json │ │ │ └── instagram@2x.png │ │ └── test.imageset │ │ │ ├── Contents.json │ │ │ └── twitter@2x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── LUNSegmentedControl │ │ ├── LUNGradientView.h │ │ ├── LUNGradientView.m │ │ ├── LUNSegmentedControl.h │ │ ├── LUNSegmentedControl.m │ │ ├── UIView+LUNRemoveConstraints.h │ │ └── UIView+LUNRemoveConstraints.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LUNSegmentedControlTests │ ├── Info.plist │ └── LUNSegmentedControlTests.m └── LUNSegmentedControlUITests │ ├── Info.plist │ └── LUNSegmentedControlUITests.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LICENSE -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/AppDelegate.h -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/AppDelegate.m -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/background.imageset/Contents.json -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/background.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/background.imageset/background.png -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/label.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/label.imageset/Contents.json -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/label.imageset/SWITCHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/label.imageset/SWITCHER.png -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/rectangle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/rectangle.imageset/Contents.json -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/rectangle.imageset/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/rectangle.imageset/rectangle.png -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/selected.imageset/Contents.json -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/selected.imageset/instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/selected.imageset/instagram@2x.png -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/test.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/test.imageset/Contents.json -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/test.imageset/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Assets.xcassets/test.imageset/twitter@2x.png -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/Info.plist -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNGradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNGradientView.h -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNGradientView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNGradientView.m -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl.h -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl.m -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/UIView+LUNRemoveConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/UIView+LUNRemoveConstraints.h -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/UIView+LUNRemoveConstraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/LUNSegmentedControl/UIView+LUNRemoveConstraints.m -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/ViewController.h -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/ViewController.m -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControl/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControl/main.m -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControlTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControlTests/Info.plist -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControlTests/LUNSegmentedControlTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControlTests/LUNSegmentedControlTests.m -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControlUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControlUITests/Info.plist -------------------------------------------------------------------------------- /LUNSegmentedControl/LUNSegmentedControlUITests/LUNSegmentedControlUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/LUNSegmentedControl/LUNSegmentedControlUITests/LUNSegmentedControlUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stormotion-Mobile/LUNSegmentedControl/HEAD/README.md --------------------------------------------------------------------------------