RNStatePicker 0.0.5

RNStatePicker 0.0.5

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Apr 2016

Maintained by Rafael Nobre.



  • By
  • Rafael Nobre

CountryPicker

Country picker table view controller for iOS7+.
It has convinient search and dynamic fonts support.

Supported Platforms

  • iOS 7+

Installing

In order to install CountryPicker, you'll need to copy the CountryPicker folder into your Xcode project.

Usage

In order to use CountryPicker, you'll need to #import "SLCountryPickerViewController.h" and include the following code in your project:

SLCountryPickerViewController *vc = [[SLCountryPickerViewController alloc]init];
vc.completionBlock = ^(NSString *country, NSString *code){
//Your code here
    _countryNameLabel.text = country;
    _countryImageView.image = [UIImage imageNamed:code];
    _countryCodeLabel.text = code;

};
//
[self.navigationController pushViewController:vc animated:YES];

Where in completion block you get country and country code strings.

Credits & Contributors

Beautiful flaga images are taken from https://github.com/koppi/iso-country-flags-svg-collection

CountryPicker was written by Dmitry Shmidt. Website: www.shmidtlab.com
Twitter: http://twitter.com/shmidtlab

E-mail [email protected]

License

CountryPicker is licensed under the MIT license.