Skip to content

Commit 19ab6bf

Browse files
committed
* README file updated
* CountryPicker 1.2.3 version
1 parent 53992fd commit 19ab6bf

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

CountryPicker/CountryPicker/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.2.2</string>
18+
<string>1.2.3</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

CountryPickerDemo/CountryPickerDemo/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.2.2</string>
18+
<string>1.2.3</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.2.2</string>
20+
<string>1.2.3</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>UILaunchStoryboardName</key>

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,40 @@ Country Picker with flags for iOS iPhone Apps, written in Swift. Currently suppo
88
</p>
99
</p>
1010

11+
## Features
12+
13+
* You can easily get an array of Country Objects which includes following attributes per country object instance
14+
* Index in alphabetical order (0 - 225)
15+
* Country Name,
16+
* ISO Country Code (Ex. for Sri Lanka - LK)
17+
* Locale ID for the country (Ex. for Sri Lanka - _LK)
18+
* Flag Image Name (out of the 226 flags images files included within the library)
19+
* You can integrate above CountryPickerTableViewController with 5 lines of code (see bellow steps)
20+
21+
##Installation
22+
###CocoaPods
23+
[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:
24+
25+
26+
```bash
27+
$ gem install cocoapods
28+
```
29+
30+
To integrate **CountryPicker** into your Xcode project using CocoaPods, specify it in your Podfile as follows:
31+
32+
You want to add pod 'countrypicker-ios-swift', '~> 1.2' similar to the following to your Podfile:
33+
34+
```ruby
35+
target '<Your App Target Name>' do
36+
pod 'countrypicker-ios-swift', '~> 1.2'
37+
end
38+
```
39+
40+
Then run a `pod install` inside your terminal, or from [CocoaPods.app](https://cocoapods.org/app).
41+
42+
##### Q: Why you should use this?
43+
**A:** Because, you shouldn't bother and spend time on re-inventing the wheel again, even though you could and you are smart. And CountryPicker iOS Swift library is much lightweight and much flexible just like a piece of clay where you can play with and build up to any purpose you like.
44+
1145
## Development Road Map
1246
* DisplayOnlyCountriesArr
1347
* ShowExceptCountriesArr

0 commit comments

Comments
 (0)