├── ChinaCityList.json ├── CityListExport ├── CityListExport.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── ruixingchen.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ruixingchen.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── CityListExport.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ruixingchen.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── CityListExport │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GOVArea.swift │ ├── HFArea.swift │ ├── Info.plist │ ├── Resource │ │ ├── govSource.txt │ │ └── hfSource.txt │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Kanna │ ├── LICENSE │ ├── Modules │ │ ├── libxml2-kanna.h │ │ └── module.modulemap │ ├── README.md │ └── Sources │ │ └── Kanna │ │ ├── CSS.swift │ │ ├── Kanna.h │ │ ├── Kanna.swift │ │ ├── libxmlHTMLDocument.swift │ │ ├── libxmlHTMLNode.swift │ │ └── libxmlParserOption.swift │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── ruixingchen.xcuserdatad │ │ └── xcschemes │ │ ├── Kanna.xcscheme │ │ ├── Pods-CityListExport.xcscheme │ │ ├── SwiftyJSON.xcscheme │ │ └── xcschememanagement.plist │ ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON.swift │ └── Target Support Files │ ├── Kanna │ ├── Info.plist │ ├── Kanna-dummy.m │ ├── Kanna-prefix.pch │ ├── Kanna-umbrella.h │ ├── Kanna.modulemap │ └── Kanna.xcconfig │ ├── Pods-CityListExport │ ├── Info.plist │ ├── Pods-CityListExport-acknowledgements.markdown │ ├── Pods-CityListExport-acknowledgements.plist │ ├── Pods-CityListExport-dummy.m │ ├── Pods-CityListExport-frameworks.sh │ ├── Pods-CityListExport-resources.sh │ ├── Pods-CityListExport-umbrella.h │ ├── Pods-CityListExport.debug.xcconfig │ ├── Pods-CityListExport.modulemap │ └── Pods-CityListExport.release.xcconfig │ └── SwiftyJSON │ ├── Info.plist │ ├── SwiftyJSON-dummy.m │ ├── SwiftyJSON-prefix.pch │ ├── SwiftyJSON-umbrella.h │ ├── SwiftyJSON.modulemap │ └── SwiftyJSON.xcconfig ├── LICENSE ├── README.md └── gov.json /ChinaCityList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/ChinaCityList.json -------------------------------------------------------------------------------- /CityListExport/CityListExport.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CityListExport/CityListExport.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CityListExport/CityListExport.xcodeproj/project.xcworkspace/xcuserdata/ruixingchen.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport.xcodeproj/project.xcworkspace/xcuserdata/ruixingchen.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CityListExport/CityListExport.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CityListExport/CityListExport.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CityListExport/CityListExport.xcworkspace/xcuserdata/ruixingchen.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport.xcworkspace/xcuserdata/ruixingchen.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CityListExport/CityListExport.xcworkspace/xcuserdata/ruixingchen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport.xcworkspace/xcuserdata/ruixingchen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CityListExport/CityListExport/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/AppDelegate.swift -------------------------------------------------------------------------------- /CityListExport/CityListExport/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CityListExport/CityListExport/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CityListExport/CityListExport/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CityListExport/CityListExport/GOVArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/GOVArea.swift -------------------------------------------------------------------------------- /CityListExport/CityListExport/HFArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/HFArea.swift -------------------------------------------------------------------------------- /CityListExport/CityListExport/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/Info.plist -------------------------------------------------------------------------------- /CityListExport/CityListExport/Resource/govSource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/Resource/govSource.txt -------------------------------------------------------------------------------- /CityListExport/CityListExport/Resource/hfSource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/Resource/hfSource.txt -------------------------------------------------------------------------------- /CityListExport/CityListExport/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/CityListExport/ViewController.swift -------------------------------------------------------------------------------- /CityListExport/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Podfile -------------------------------------------------------------------------------- /CityListExport/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Podfile.lock -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/LICENSE -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Modules/libxml2-kanna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Modules/libxml2-kanna.h -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Modules/module.modulemap -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/README.md -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Sources/Kanna/CSS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Sources/Kanna/CSS.swift -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Sources/Kanna/Kanna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Sources/Kanna/Kanna.h -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Sources/Kanna/Kanna.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Sources/Kanna/Kanna.swift -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Sources/Kanna/libxmlHTMLDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Sources/Kanna/libxmlHTMLDocument.swift -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Sources/Kanna/libxmlHTMLNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Sources/Kanna/libxmlHTMLNode.swift -------------------------------------------------------------------------------- /CityListExport/Pods/Kanna/Sources/Kanna/libxmlParserOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Kanna/Sources/Kanna/libxmlParserOption.swift -------------------------------------------------------------------------------- /CityListExport/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Manifest.lock -------------------------------------------------------------------------------- /CityListExport/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/Kanna.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/Kanna.xcscheme -------------------------------------------------------------------------------- /CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/Pods-CityListExport.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/Pods-CityListExport.xcscheme -------------------------------------------------------------------------------- /CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/SwiftyJSON.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/SwiftyJSON.xcscheme -------------------------------------------------------------------------------- /CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Pods.xcodeproj/xcuserdata/ruixingchen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CityListExport/Pods/SwiftyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/SwiftyJSON/LICENSE -------------------------------------------------------------------------------- /CityListExport/Pods/SwiftyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/SwiftyJSON/README.md -------------------------------------------------------------------------------- /CityListExport/Pods/SwiftyJSON/Source/SwiftyJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/SwiftyJSON/Source/SwiftyJSON.swift -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Kanna/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Kanna/Info.plist -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Kanna/Kanna-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Kanna/Kanna-dummy.m -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Kanna/Kanna-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Kanna/Kanna-prefix.pch -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Kanna/Kanna-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Kanna/Kanna-umbrella.h -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Kanna/Kanna.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Kanna/Kanna.modulemap -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Kanna/Kanna.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Kanna/Kanna.xcconfig -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Info.plist -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-acknowledgements.markdown -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-acknowledgements.plist -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-dummy.m -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-frameworks.sh -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-resources.sh -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport-umbrella.h -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport.debug.xcconfig -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport.modulemap -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/Pods-CityListExport/Pods-CityListExport.release.xcconfig -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/SwiftyJSON/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/SwiftyJSON/Info.plist -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap -------------------------------------------------------------------------------- /CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/CityListExport/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### 这是中国的城市列表, JSON 格式 2 | 3 | 4 | gov.json为来自国家统计局的数据, 更新时间2016.07.31, 但是没有港澳台数据 5 | 6 | -------------------------------------------------------------------------------- /gov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruixingchen/ChinaCityList/HEAD/gov.json --------------------------------------------------------------------------------