0

I am trying to implement contact details from iphone. but getting error

Showing error No such module Contacts

Pravin S.
  • 465
  • 7
  • 22

2 Answers2

1

In your project build settings, under the general tab, find the section for Linked frameworks and Libraries.

Then find and add Contacts.framework (and optionally ContactsUI.framework) to your project.

Do a clean rebuild of your project to be sure.

Hope that helps!

mohonish
  • 1,396
  • 1
  • 9
  • 21
0

It shows because in iOS9 new Contacts framework has been integrated named "ContactsUI".

so, import ContactsUI in your file.

Reference Example:

How to select a contact with ABPeoplePickerNavigationController in Swift?

Community
  • 1
  • 1
Sohil R. Memon
  • 9,404
  • 1
  • 31
  • 57
  • 3
    That is not correct. If you check the attached link, `import Contacts` is correct. Contacts and ContactsUI framework were introduced to replace the Address Book and Address Book UI frameworks. https://developer.apple.com/library/prerelease/ios/documentation/Contacts/Reference/Contacts_Framework/index.html – mohonish Oct 12 '15 at 11:57