CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

EVContactsPicker 0.5.12

EVContactsPicker 0.5.12

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Apr 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Edward Valentini.




EVContactsPicker

Code Climate

EVContactsPickerMasthead

Swift Versions

Xcode 8.x / Swift 3.0

Screenshots

Screenshot0    Screenshot1

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

import EVContactsPicker

Requirements

  • iOS 9.0+
  • ARC
  • Swift 3.0

Installation

EVContactsPicker is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "EVContactsPicker"

Example

import UIKit
import EVContactsPicker

class DemoController: UIViewController, EVContactsPickerDelegate {

    ...

    func showPicker() {
        let contactPicker = EVContactsPickerViewController()
        contactPicker.delegate = self
        self.navigationController?.pushViewController(contactPicker, animated: true)
    }

    func didChooseContacts(contacts: [EVContactProtocol]?) {
        if let cons = contacts {
            for con in cons {
                print("\(con.fullname())")
            }
        }
        self.navigationController?.popViewControllerAnimated(true)
    }

    ...

}

Author

Edward Valentini, [email protected]

License

EVContactsPicker is available under the MIT license. See the LICENSE file for more info.