Awesome
PhoneNumberPicker
A simple and easy to use view controller enabling you to enter a phone number with a country code similar to WhatsApp
Screenshots
Installation
Drag and drop the src folder to your project
Setup
// 1. Add the protocol PhoneNumberViewControllerDelegate
class ViewController: UIViewController,PhoneNumberViewControllerDelegate {
func presentPhoneNumberViewController { //Your function. Can be any name
// 2. Create the PhoneNumberViewController
let phoneNumberViewController = PhoneNumberViewController.standardController()
// 3. Set the delegate
phoneNumberViewController.delegate = self
// 4. Present the PhoneNumberViewController (Navigation Controller)
navigationController?.pushViewController(phoneNumberViewController, animated: true)
}
Country Selector
You can manually present a CountriesViewController
to present a list of all countries and their phone extensions to the user