├── .gitignore ├── LICENSE ├── README.md ├── SGPopSelectView.podspec ├── SGPopSelectView ├── SGPopSelectViewDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SGPopSelectViewDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── SGPopSelectViewTests │ ├── Info.plist │ └── SGPopSelectViewTests.m ├── classes ├── SGPopSelectView.h ├── SGPopSelectView.m └── sg_pop_images.xcassets │ ├── oval_selected.imageset │ ├── Contents.json │ └── Oval 3.png │ └── oval_unselected.imageset │ ├── Contents.json │ └── Oval 4.png └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/README.md -------------------------------------------------------------------------------- /SGPopSelectView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView.podspec -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/Info.plist -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/ViewController.h -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/ViewController.m -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewDemo/main.m -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewTests/Info.plist -------------------------------------------------------------------------------- /SGPopSelectView/SGPopSelectViewTests/SGPopSelectViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/SGPopSelectView/SGPopSelectViewTests/SGPopSelectViewTests.m -------------------------------------------------------------------------------- /classes/SGPopSelectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/classes/SGPopSelectView.h -------------------------------------------------------------------------------- /classes/SGPopSelectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/classes/SGPopSelectView.m -------------------------------------------------------------------------------- /classes/sg_pop_images.xcassets/oval_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/classes/sg_pop_images.xcassets/oval_selected.imageset/Contents.json -------------------------------------------------------------------------------- /classes/sg_pop_images.xcassets/oval_selected.imageset/Oval 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/classes/sg_pop_images.xcassets/oval_selected.imageset/Oval 3.png -------------------------------------------------------------------------------- /classes/sg_pop_images.xcassets/oval_unselected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/classes/sg_pop_images.xcassets/oval_unselected.imageset/Contents.json -------------------------------------------------------------------------------- /classes/sg_pop_images.xcassets/oval_unselected.imageset/Oval 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/classes/sg_pop_images.xcassets/oval_unselected.imageset/Oval 4.png -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiwei/SGPopSelectView/HEAD/demo.gif --------------------------------------------------------------------------------