├── CityListDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ray.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ray.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CityListDemo.xcscheme │ └── xcschememanagement.plist ├── CityListDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── CityListDemo-Bridging-Header.h ├── Info.plist ├── LocationManager.swift ├── MainViewController.swift └── MainViewController.xib ├── CityListDemoTests ├── CityListDemoTests.swift └── Info.plist ├── CityListDemoUITests ├── CityListDemoUITests.swift └── Info.plist ├── CityListView ├── CityButton.swift ├── CityViewController.swift ├── CityViewController.xib ├── CollectionViewCell.swift ├── CollectionViewCell.xib ├── Resource │ └── citydict.plist ├── SectionView.swift ├── SectionView.xib ├── TableViewCell.swift ├── TableViewCell.xib ├── TableViewHeadSectionCell.swift ├── TableViewHeadSectionCell.xib └── Util │ └── SpecifyArray.swift ├── README.md ├── ZYPinYinSearchLib ├── ChineseInclude.h ├── ChineseInclude.m ├── ChineseToPinyinResource.h ├── ChineseToPinyinResource.m ├── HanyuPinyinOutputFormat.h ├── HanyuPinyinOutputFormat.m ├── NSString+PinYin4Cocoa.h ├── NSString+PinYin4Cocoa.m ├── PinYinForObjc.h ├── PinYinForObjc.m ├── PinyinFormatter.h ├── PinyinFormatter.m ├── PinyinHelper.h ├── PinyinHelper.m ├── ZYPinYinSearch.h ├── ZYPinYinSearch.m └── unicode_to_hanyu_pinyin.txt └── 效果图 ├── 01.gif ├── 02.png └── 03.png /CityListDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CityListDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CityListDemo.xcodeproj/project.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo.xcodeproj/project.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CityListDemo.xcodeproj/xcuserdata/ray.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo.xcodeproj/xcuserdata/ray.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CityListDemo.xcodeproj/xcuserdata/ray.xcuserdatad/xcschemes/CityListDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo.xcodeproj/xcuserdata/ray.xcuserdatad/xcschemes/CityListDemo.xcscheme -------------------------------------------------------------------------------- /CityListDemo.xcodeproj/xcuserdata/ray.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo.xcodeproj/xcuserdata/ray.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CityListDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/AppDelegate.swift -------------------------------------------------------------------------------- /CityListDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CityListDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CityListDemo/CityListDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/CityListDemo-Bridging-Header.h -------------------------------------------------------------------------------- /CityListDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/Info.plist -------------------------------------------------------------------------------- /CityListDemo/LocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/LocationManager.swift -------------------------------------------------------------------------------- /CityListDemo/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/MainViewController.swift -------------------------------------------------------------------------------- /CityListDemo/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemo/MainViewController.xib -------------------------------------------------------------------------------- /CityListDemoTests/CityListDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemoTests/CityListDemoTests.swift -------------------------------------------------------------------------------- /CityListDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemoTests/Info.plist -------------------------------------------------------------------------------- /CityListDemoUITests/CityListDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemoUITests/CityListDemoUITests.swift -------------------------------------------------------------------------------- /CityListDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListDemoUITests/Info.plist -------------------------------------------------------------------------------- /CityListView/CityButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/CityButton.swift -------------------------------------------------------------------------------- /CityListView/CityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/CityViewController.swift -------------------------------------------------------------------------------- /CityListView/CityViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/CityViewController.xib -------------------------------------------------------------------------------- /CityListView/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/CollectionViewCell.swift -------------------------------------------------------------------------------- /CityListView/CollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/CollectionViewCell.xib -------------------------------------------------------------------------------- /CityListView/Resource/citydict.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/Resource/citydict.plist -------------------------------------------------------------------------------- /CityListView/SectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/SectionView.swift -------------------------------------------------------------------------------- /CityListView/SectionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/SectionView.xib -------------------------------------------------------------------------------- /CityListView/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/TableViewCell.swift -------------------------------------------------------------------------------- /CityListView/TableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/TableViewCell.xib -------------------------------------------------------------------------------- /CityListView/TableViewHeadSectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/TableViewHeadSectionCell.swift -------------------------------------------------------------------------------- /CityListView/TableViewHeadSectionCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/TableViewHeadSectionCell.xib -------------------------------------------------------------------------------- /CityListView/Util/SpecifyArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/CityListView/Util/SpecifyArray.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/README.md -------------------------------------------------------------------------------- /ZYPinYinSearchLib/ChineseInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/ChineseInclude.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/ChineseInclude.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/ChineseInclude.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/ChineseToPinyinResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/ChineseToPinyinResource.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/ChineseToPinyinResource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/ChineseToPinyinResource.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/HanyuPinyinOutputFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/HanyuPinyinOutputFormat.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/HanyuPinyinOutputFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/HanyuPinyinOutputFormat.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/NSString+PinYin4Cocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/NSString+PinYin4Cocoa.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/NSString+PinYin4Cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/NSString+PinYin4Cocoa.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/PinYinForObjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/PinYinForObjc.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/PinYinForObjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/PinYinForObjc.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/PinyinFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/PinyinFormatter.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/PinyinFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/PinyinFormatter.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/PinyinHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/PinyinHelper.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/PinyinHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/PinyinHelper.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/ZYPinYinSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/ZYPinYinSearch.h -------------------------------------------------------------------------------- /ZYPinYinSearchLib/ZYPinYinSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/ZYPinYinSearch.m -------------------------------------------------------------------------------- /ZYPinYinSearchLib/unicode_to_hanyu_pinyin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/ZYPinYinSearchLib/unicode_to_hanyu_pinyin.txt -------------------------------------------------------------------------------- /效果图/01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/效果图/01.gif -------------------------------------------------------------------------------- /效果图/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/效果图/02.png -------------------------------------------------------------------------------- /效果图/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyaorui/CityList/HEAD/效果图/03.png --------------------------------------------------------------------------------