├── .gitignore ├── For users ├── SGSelectViewController.h └── SGSelectViewController.m ├── LICENSE ├── README.md ├── SGSelectViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ne210236.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ne210236.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── SGSelectViewController.xcscheme │ └── xcschememanagement.plist ├── SGSelectViewController ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── SGSelectViewController-Info.plist ├── SGSelectViewController-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib └── main.m ├── images ├── balloon@2x.png ├── choseBtn@2x.png ├── full.png ├── ok@2x.png ├── plan_eat@2x.png ├── plan_nature@2x.png ├── plan_plane@2x.png ├── plan_rest@2x.png ├── plan_shopping@2x.png ├── plan_sports@2x.png ├── plan_structure@2x.png ├── plan_train@2x.png ├── plan_walk@2x.png └── ss.png └── lib ├── SGSelectViewController.h └── SGSelectViewController.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /For users /SGSelectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/For users /SGSelectViewController.h -------------------------------------------------------------------------------- /For users /SGSelectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/For users /SGSelectViewController.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/README.md -------------------------------------------------------------------------------- /SGSelectViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SGSelectViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SGSelectViewController.xcodeproj/project.xcworkspace/xcuserdata/ne210236.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController.xcodeproj/project.xcworkspace/xcuserdata/ne210236.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SGSelectViewController.xcodeproj/xcuserdata/ne210236.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController.xcodeproj/xcuserdata/ne210236.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /SGSelectViewController.xcodeproj/xcuserdata/ne210236.xcuserdatad/xcschemes/SGSelectViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController.xcodeproj/xcuserdata/ne210236.xcuserdatad/xcschemes/SGSelectViewController.xcscheme -------------------------------------------------------------------------------- /SGSelectViewController.xcodeproj/xcuserdata/ne210236.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController.xcodeproj/xcuserdata/ne210236.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SGSelectViewController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/AppDelegate.h -------------------------------------------------------------------------------- /SGSelectViewController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/AppDelegate.m -------------------------------------------------------------------------------- /SGSelectViewController/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/Default-568h@2x.png -------------------------------------------------------------------------------- /SGSelectViewController/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/Default.png -------------------------------------------------------------------------------- /SGSelectViewController/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/Default@2x.png -------------------------------------------------------------------------------- /SGSelectViewController/SGSelectViewController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/SGSelectViewController-Info.plist -------------------------------------------------------------------------------- /SGSelectViewController/SGSelectViewController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/SGSelectViewController-Prefix.pch -------------------------------------------------------------------------------- /SGSelectViewController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/ViewController.h -------------------------------------------------------------------------------- /SGSelectViewController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/ViewController.m -------------------------------------------------------------------------------- /SGSelectViewController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SGSelectViewController/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /SGSelectViewController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/SGSelectViewController/main.m -------------------------------------------------------------------------------- /images/balloon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/balloon@2x.png -------------------------------------------------------------------------------- /images/choseBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/choseBtn@2x.png -------------------------------------------------------------------------------- /images/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/full.png -------------------------------------------------------------------------------- /images/ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/ok@2x.png -------------------------------------------------------------------------------- /images/plan_eat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_eat@2x.png -------------------------------------------------------------------------------- /images/plan_nature@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_nature@2x.png -------------------------------------------------------------------------------- /images/plan_plane@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_plane@2x.png -------------------------------------------------------------------------------- /images/plan_rest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_rest@2x.png -------------------------------------------------------------------------------- /images/plan_shopping@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_shopping@2x.png -------------------------------------------------------------------------------- /images/plan_sports@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_sports@2x.png -------------------------------------------------------------------------------- /images/plan_structure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_structure@2x.png -------------------------------------------------------------------------------- /images/plan_train@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_train@2x.png -------------------------------------------------------------------------------- /images/plan_walk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/plan_walk@2x.png -------------------------------------------------------------------------------- /images/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/images/ss.png -------------------------------------------------------------------------------- /lib/SGSelectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/lib/SGSelectViewController.h -------------------------------------------------------------------------------- /lib/SGSelectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacoTasu/SGSelectViewController/HEAD/lib/SGSelectViewController.m --------------------------------------------------------------------------------