Popularity
3.2
Stable
Activity
0.0
Stable
140
9
25

Code Quality Rank: L4
Programming language: Swift
License: MIT License
Tags: UI    

phone-number-picker alternatives and similar libraries

Based on the "UI" category.
Alternatively, view phone-number-picker alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of phone-number-picker or a related project?

Add another 'UI' Library

README

PhoneNumberPicker

A simple and easy to use view controller enabling you to enter a phone number with a country code similar to WhatsApp

Screenshots

alt text alt text

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