├── README.md ├── Screenshots ├── datePicker_code.png ├── datePicker_screenshots.png ├── inputView_code.png ├── inputView_screenshots.png ├── timePicker_code.png └── timePicker_screenshots.png ├── TZPopInputView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── tanzhen.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── tanzhen.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TZPopInputView.xcscheme │ └── xcschememanagement.plist ├── TZPopInputView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── disabled_left.imageset │ │ ├── Contents.json │ │ ├── def_left.png │ │ ├── def_left@2x.png │ │ └── def_left@3x.png │ ├── disabled_right.imageset │ │ ├── Contents.json │ │ ├── def_right.png │ │ ├── def_right@2x.png │ │ └── def_right@3x.png │ ├── enable_left.imageset │ │ ├── Contents.json │ │ ├── sel_right.png │ │ ├── sel_right@2x.png │ │ └── sel_right@3x.png │ └── enable_right.imageset │ │ ├── Contents.json │ │ ├── sel_left.png │ │ ├── sel_left@2x.png │ │ └── sel_left@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TZDatePicker │ ├── TZDatePickerView.h │ ├── TZDatePickerView.m │ └── TZDatePickerView.xib ├── TZPopInputView │ ├── TZPopInputView.h │ ├── TZPopInputView.m │ └── TZPopInputView.xib ├── TZTimePicker │ ├── TZTimePickerView.h │ ├── TZTimePickerView.m │ └── TZTimePickerView.xib ├── ViewController.h ├── ViewController.m └── main.m ├── TZPopInputViewTests ├── Info.plist └── TZPopInputViewTests.m └── TZPopInputViewUITests ├── Info.plist └── TZPopInputViewUITests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/datePicker_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/Screenshots/datePicker_code.png -------------------------------------------------------------------------------- /Screenshots/datePicker_screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/Screenshots/datePicker_screenshots.png -------------------------------------------------------------------------------- /Screenshots/inputView_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/Screenshots/inputView_code.png -------------------------------------------------------------------------------- /Screenshots/inputView_screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/Screenshots/inputView_screenshots.png -------------------------------------------------------------------------------- /Screenshots/timePicker_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/Screenshots/timePicker_code.png -------------------------------------------------------------------------------- /Screenshots/timePicker_screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/Screenshots/timePicker_screenshots.png -------------------------------------------------------------------------------- /TZPopInputView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TZPopInputView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TZPopInputView.xcodeproj/project.xcworkspace/xcuserdata/tanzhen.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView.xcodeproj/project.xcworkspace/xcuserdata/tanzhen.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TZPopInputView.xcodeproj/xcuserdata/tanzhen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView.xcodeproj/xcuserdata/tanzhen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TZPopInputView.xcodeproj/xcuserdata/tanzhen.xcuserdatad/xcschemes/TZPopInputView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView.xcodeproj/xcuserdata/tanzhen.xcuserdatad/xcschemes/TZPopInputView.xcscheme -------------------------------------------------------------------------------- /TZPopInputView.xcodeproj/xcuserdata/tanzhen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView.xcodeproj/xcuserdata/tanzhen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TZPopInputView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/AppDelegate.h -------------------------------------------------------------------------------- /TZPopInputView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/AppDelegate.m -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_left.imageset/Contents.json -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_left.imageset/def_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_left.imageset/def_left.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_left.imageset/def_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_left.imageset/def_left@2x.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_left.imageset/def_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_left.imageset/def_left@3x.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_right.imageset/Contents.json -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_right.imageset/def_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_right.imageset/def_right.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_right.imageset/def_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_right.imageset/def_right@2x.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/disabled_right.imageset/def_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/disabled_right.imageset/def_right@3x.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_left.imageset/Contents.json -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_left.imageset/sel_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_left.imageset/sel_right.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_left.imageset/sel_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_left.imageset/sel_right@2x.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_left.imageset/sel_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_left.imageset/sel_right@3x.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_right.imageset/Contents.json -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_right.imageset/sel_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_right.imageset/sel_left.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_right.imageset/sel_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_right.imageset/sel_left@2x.png -------------------------------------------------------------------------------- /TZPopInputView/Assets.xcassets/enable_right.imageset/sel_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Assets.xcassets/enable_right.imageset/sel_left@3x.png -------------------------------------------------------------------------------- /TZPopInputView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TZPopInputView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TZPopInputView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/Info.plist -------------------------------------------------------------------------------- /TZPopInputView/TZDatePicker/TZDatePickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZDatePicker/TZDatePickerView.h -------------------------------------------------------------------------------- /TZPopInputView/TZDatePicker/TZDatePickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZDatePicker/TZDatePickerView.m -------------------------------------------------------------------------------- /TZPopInputView/TZDatePicker/TZDatePickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZDatePicker/TZDatePickerView.xib -------------------------------------------------------------------------------- /TZPopInputView/TZPopInputView/TZPopInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZPopInputView/TZPopInputView.h -------------------------------------------------------------------------------- /TZPopInputView/TZPopInputView/TZPopInputView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZPopInputView/TZPopInputView.m -------------------------------------------------------------------------------- /TZPopInputView/TZPopInputView/TZPopInputView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZPopInputView/TZPopInputView.xib -------------------------------------------------------------------------------- /TZPopInputView/TZTimePicker/TZTimePickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZTimePicker/TZTimePickerView.h -------------------------------------------------------------------------------- /TZPopInputView/TZTimePicker/TZTimePickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZTimePicker/TZTimePickerView.m -------------------------------------------------------------------------------- /TZPopInputView/TZTimePicker/TZTimePickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/TZTimePicker/TZTimePickerView.xib -------------------------------------------------------------------------------- /TZPopInputView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/ViewController.h -------------------------------------------------------------------------------- /TZPopInputView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/ViewController.m -------------------------------------------------------------------------------- /TZPopInputView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputView/main.m -------------------------------------------------------------------------------- /TZPopInputViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputViewTests/Info.plist -------------------------------------------------------------------------------- /TZPopInputViewTests/TZPopInputViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputViewTests/TZPopInputViewTests.m -------------------------------------------------------------------------------- /TZPopInputViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputViewUITests/Info.plist -------------------------------------------------------------------------------- /TZPopInputViewUITests/TZPopInputViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banchichen/SomeGoodCustomView/HEAD/TZPopInputViewUITests/TZPopInputViewUITests.m --------------------------------------------------------------------------------