diff --git a/Images/WX20171027-104346@2x.png b/Images/WX20171027-104346@2x.png new file mode 100644 index 0000000..ec1b894 Binary files /dev/null and b/Images/WX20171027-104346@2x.png differ diff --git a/Images/WX20171027-110406@2x.png b/Images/WX20171027-110406@2x.png new file mode 100644 index 0000000..f5e8f3d Binary files /dev/null and b/Images/WX20171027-110406@2x.png differ diff --git a/README.html b/README.html new file mode 100644 index 0000000..d3bc558 --- /dev/null +++ b/README.html @@ -0,0 +1,1032 @@ +README

AreaPickerView

+
最简单的选择地理位置控件
+
+

使用方法

+

1 复制AreaPickerView文件夹到项目工程,确保文件夹里面内容被包含到target

+

2
+

@IBAction func chooseBtnClick() {
+
+    AreaPickView.showChooseCityView { (province, city,            town) in
+        self.areaLabel.text = province + " " + city + " "         + town
+        }
+
+
+}
+
+

\ No newline at end of file diff --git a/README.md b/README.md index 182928c..bce4b64 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,12 @@ 2 ``` @IBAction func chooseBtnClick() { + AreaPickView.showChooseCityView { (province, city, town) in self.areaLabel.text = province + " " + city + " " + town } + + } ```