edwardvalentini/EVContactsPicker

View on GitHub
Pod/Classes/EVContactsPickerDelegate.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  EVContactsPickerDelegate.swift
//  Pods
//
//  Created by Edward Valentini on 9/19/15.
//
//

import Foundation

public protocol EVContactsPickerDelegate: class  {
    func didChooseContacts(_ contacts: [EVContactProtocol]? ) -> Void
    func shouldShowContact(_ contact: EVContactProtocol) -> Bool
}

extension EVContactsPickerDelegate {
    public func shouldShowContact(_ contact: EVContactProtocol) -> Bool {
        return true
    }
}