├── .gitignore ├── Default-568h@2x.png ├── README.md ├── areapicker.xcodeproj └── project.pbxproj └── areapicker ├── AppDelegate.h ├── AppDelegate.m ├── HZAreaPickerView.h ├── HZAreaPickerView.m ├── HZAreaPickerView.xib ├── HZLocation.h ├── HZLocation.m ├── ViewController.h ├── ViewController.m ├── area.plist ├── areapicker-Info.plist ├── areapicker-Prefix.pch ├── city.plist ├── en.lproj ├── InfoPlist.strings └── ViewController.xib └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/.gitignore -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 中国省市地区选择器 3 | 4 | ## 使用 5 | 1. 将area picker group 下的全部文件拖到你的项目下。 6 | 2. 添加QuartzCore.framework 7 | 8 | 具体看实例 9 | 10 | ![snapshot](http://ww4.sinaimg.cn/bmiddle/76770db5gw1dwr6gax695j.jpg) -------------------------------------------------------------------------------- /areapicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /areapicker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/AppDelegate.h -------------------------------------------------------------------------------- /areapicker/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/AppDelegate.m -------------------------------------------------------------------------------- /areapicker/HZAreaPickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/HZAreaPickerView.h -------------------------------------------------------------------------------- /areapicker/HZAreaPickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/HZAreaPickerView.m -------------------------------------------------------------------------------- /areapicker/HZAreaPickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/HZAreaPickerView.xib -------------------------------------------------------------------------------- /areapicker/HZLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/HZLocation.h -------------------------------------------------------------------------------- /areapicker/HZLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/HZLocation.m -------------------------------------------------------------------------------- /areapicker/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/ViewController.h -------------------------------------------------------------------------------- /areapicker/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/ViewController.m -------------------------------------------------------------------------------- /areapicker/area.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/area.plist -------------------------------------------------------------------------------- /areapicker/areapicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/areapicker-Info.plist -------------------------------------------------------------------------------- /areapicker/areapicker-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/areapicker-Prefix.pch -------------------------------------------------------------------------------- /areapicker/city.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/city.plist -------------------------------------------------------------------------------- /areapicker/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /areapicker/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /areapicker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudorz/areapicker/HEAD/areapicker/main.m --------------------------------------------------------------------------------