├── .gitignore ├── Framework ├── HMSegmentedControl-umbrella.h ├── Info.plist └── module.modulemap ├── HMSegmentedControl.podspec ├── HMSegmentedControl.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── HMSegmentedControl.xcscheme ├── HMSegmentedControl ├── HMSegmentedControl.h └── HMSegmentedControl.m ├── HMSegmentedControlExample ├── AppDelegate.h ├── AppDelegate.m ├── ExampleViewController.swift ├── HMSegmentedControlExample-Bridging-Header.h ├── HMSegmentedControlExample-Info.plist ├── HMSegmentedControlExample-Prefix.pch ├── Images │ ├── 1-selected.png │ ├── 1-selected@2x.png │ ├── 1.png │ ├── 1@2x.png │ ├── 2-selected.png │ ├── 2-selected@2x.png │ ├── 2.png │ ├── 2@2x.png │ ├── 3-selected.png │ ├── 3-selected@2x.png │ ├── 3.png │ ├── 3@2x.png │ ├── 4-selected.png │ ├── 4-selected@2x.png │ ├── 4.png │ └── 4@2x.png ├── Launch Screen.xib ├── ViewController.h ├── ViewController.m └── main.m ├── LICENSE.md ├── Package.swift ├── README.md ├── Screenshot.png └── Screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.PNG ├── 7.PNG └── 8.jpeg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/.gitignore -------------------------------------------------------------------------------- /Framework/HMSegmentedControl-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Framework/HMSegmentedControl-umbrella.h -------------------------------------------------------------------------------- /Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Framework/Info.plist -------------------------------------------------------------------------------- /Framework/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Framework/module.modulemap -------------------------------------------------------------------------------- /HMSegmentedControl.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControl.podspec -------------------------------------------------------------------------------- /HMSegmentedControl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HMSegmentedControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HMSegmentedControl.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControl.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HMSegmentedControl.xcodeproj/xcshareddata/xcschemes/HMSegmentedControl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControl.xcodeproj/xcshareddata/xcschemes/HMSegmentedControl.xcscheme -------------------------------------------------------------------------------- /HMSegmentedControl/HMSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControl/HMSegmentedControl.h -------------------------------------------------------------------------------- /HMSegmentedControl/HMSegmentedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControl/HMSegmentedControl.m -------------------------------------------------------------------------------- /HMSegmentedControlExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/AppDelegate.h -------------------------------------------------------------------------------- /HMSegmentedControlExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/AppDelegate.m -------------------------------------------------------------------------------- /HMSegmentedControlExample/ExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/ExampleViewController.swift -------------------------------------------------------------------------------- /HMSegmentedControlExample/HMSegmentedControlExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/HMSegmentedControlExample-Bridging-Header.h -------------------------------------------------------------------------------- /HMSegmentedControlExample/HMSegmentedControlExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/HMSegmentedControlExample-Info.plist -------------------------------------------------------------------------------- /HMSegmentedControlExample/HMSegmentedControlExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/HMSegmentedControlExample-Prefix.pch -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/1-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/1-selected.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/1-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/1-selected@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/1.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/1@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/2-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/2-selected.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/2-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/2-selected@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/2.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/2@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/3-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/3-selected.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/3-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/3-selected@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/3.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/3@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/4-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/4-selected.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/4-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/4-selected@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/4.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Images/4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Images/4@2x.png -------------------------------------------------------------------------------- /HMSegmentedControlExample/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/Launch Screen.xib -------------------------------------------------------------------------------- /HMSegmentedControlExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/ViewController.h -------------------------------------------------------------------------------- /HMSegmentedControlExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/ViewController.m -------------------------------------------------------------------------------- /HMSegmentedControlExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/HMSegmentedControlExample/main.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshot.png -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/3.png -------------------------------------------------------------------------------- /Screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/4.png -------------------------------------------------------------------------------- /Screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/5.png -------------------------------------------------------------------------------- /Screenshots/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/6.PNG -------------------------------------------------------------------------------- /Screenshots/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/7.PNG -------------------------------------------------------------------------------- /Screenshots/8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMSegmentedControl/HEAD/Screenshots/8.jpeg --------------------------------------------------------------------------------