Search code examples
iosiphoneswiftcncontact

Is there a library or framework for creating and modifying contacts in iOS ? - Swift


I have an app that retrieve employees info from a database (name,number,email,etc..) .

So is there a library or framework to create new contacts or modifying them and adding them to the contacts app in iOS using swift?

enter image description here

if I want to show employee contact coming from database , should I create UI like this or I there is a library to this ?


Solution

  • Basically what are you looking for is Contacts framework(iOS 9+). It is provided by Apple and it allows you to create, edit or delete contacts on iOS.

    Here you can find documentation. And here you can find decent guide to how to use it.

    For versions iOS lower than 9, you can use AddressBook framework. Documentation. Guide.