├── .gitignore ├── JKAddressPickView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── JackySong.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── JKAddressPickView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── close.imageset │ │ ├── Contents.json │ │ ├── 填写订单关闭@2x.png │ │ └── 填写订单关闭@3x.png │ └── icon_city_ mark.imageset │ │ ├── Contents.json │ │ ├── icon_city_ mark@3x.png │ │ └── icon_城市_对号 @2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── JKAddressPickView │ ├── JKAddressPickView.h │ ├── JKAddressPickView.m │ ├── JKAddressTableViewCell.h │ ├── JKAddressTableViewCell.m │ ├── JKAddressTableViewCell.xib │ ├── UIColor+Hex.h │ ├── UIColor+Hex.m │ ├── UIView+Category.h │ ├── UIView+Category.m │ └── area.json ├── ViewController.h ├── ViewController.m └── main.m ├── JKAddressPickViewTests ├── Info.plist └── JKAddressPickViewTests.m ├── JKAddressPickViewUITests ├── Info.plist └── JKAddressPickViewUITests.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/.gitignore -------------------------------------------------------------------------------- /JKAddressPickView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JKAddressPickView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JKAddressPickView.xcodeproj/xcuserdata/JackySong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView.xcodeproj/xcuserdata/JackySong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /JKAddressPickView.xcodeproj/xcuserdata/JackySong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView.xcodeproj/xcuserdata/JackySong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /JKAddressPickView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/AppDelegate.h -------------------------------------------------------------------------------- /JKAddressPickView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/AppDelegate.m -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/close.imageset/填写订单关闭@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/close.imageset/填写订单关闭@2x.png -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/close.imageset/填写订单关闭@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/close.imageset/填写订单关闭@3x.png -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/icon_city_ mark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/icon_city_ mark.imageset/Contents.json -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/icon_city_ mark.imageset/icon_city_ mark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/icon_city_ mark.imageset/icon_city_ mark@3x.png -------------------------------------------------------------------------------- /JKAddressPickView/Assets.xcassets/icon_city_ mark.imageset/icon_城市_对号 @2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Assets.xcassets/icon_city_ mark.imageset/icon_城市_对号 @2x.png -------------------------------------------------------------------------------- /JKAddressPickView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /JKAddressPickView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /JKAddressPickView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/Info.plist -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/JKAddressPickView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/JKAddressPickView.h -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/JKAddressPickView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/JKAddressPickView.m -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/JKAddressTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/JKAddressTableViewCell.h -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/JKAddressTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/JKAddressTableViewCell.m -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/JKAddressTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/JKAddressTableViewCell.xib -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/UIColor+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/UIColor+Hex.h -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/UIColor+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/UIColor+Hex.m -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/UIView+Category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/UIView+Category.h -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/UIView+Category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/UIView+Category.m -------------------------------------------------------------------------------- /JKAddressPickView/JKAddressPickView/area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/JKAddressPickView/area.json -------------------------------------------------------------------------------- /JKAddressPickView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/ViewController.h -------------------------------------------------------------------------------- /JKAddressPickView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/ViewController.m -------------------------------------------------------------------------------- /JKAddressPickView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickView/main.m -------------------------------------------------------------------------------- /JKAddressPickViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickViewTests/Info.plist -------------------------------------------------------------------------------- /JKAddressPickViewTests/JKAddressPickViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickViewTests/JKAddressPickViewTests.m -------------------------------------------------------------------------------- /JKAddressPickViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickViewUITests/Info.plist -------------------------------------------------------------------------------- /JKAddressPickViewUITests/JKAddressPickViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/JKAddressPickViewUITests/JKAddressPickViewUITests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackySong/JKAddressPickView/HEAD/README.md --------------------------------------------------------------------------------