-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The word "Optional" appears before every contact name #31
Comments
I can't reproduce that bug at my environment but I think PR #32 will fix it, I will be very pleased if you can test it and report your results? pod 'EPContactsPicker', :git => 'https://github.com/Sorix/EPContactsPicker', :branch => 'fix/31' |
Running the I've been installing my pod from the latest |
Demo I've supplied is equal to my pull request :), if that fixes your problem please use that temporary solution until project's @ipraba will merge it to master branch. |
@Sorix It's working properly on the demo so no issues there. My only concern is the migration to Swift 3 as you've dropped the From 1.0.6@objc public protocol EPPickerDelegate { // NOTICE THE @objc
optional func epContactPicker(_: EPContactsPicker, didContactFetchFailed error: NSError)
optional func epContactPicker(_: EPContactsPicker, didCancel error: NSError)
optional func epContactPicker(_: EPContactsPicker, didSelectContact contact: EPContact)
optional func epContactPicker(_: EPContactsPicker, didSelectMultipleContacts contacts: [EPContact])
} To 2.0.0public protocol EPPickerDelegate { // NOTICE THE MISSING @objc
optional func epContactPicker(_: EPContactsPicker, didContactFetchFailed error: NSError)
optional func epContactPicker(_: EPContactsPicker, didCancel error: NSError)
optional func epContactPicker(_: EPContactsPicker, didSelectContact contact: EPContact)
optional func epContactPicker(_: EPContactsPicker, didSelectMultipleContacts contacts: [EPContact])
} Do you have plans to add an |
Example
http://i.imgur.com/Zb0Bmsx.jpg
Podfile
The text was updated successfully, but these errors were encountered: