0

I have a very simple question to ask. I am making an app where the user is presented with a screen with two text fields - Name - Phone Number When they enter that info I want to store that information in my app. Its kind of like the iphone contacts button/layout. The user enters a new contact and its displayed on a page with all his other entered contacts.

Does anyone know how to do this?

1 Answers1

0

There are many ways to save username and phone Numbers.

1) NSUserDefaults

2) PList

3) SQlite

4) Server

These are used in the increasing order of contact details data that you want to enter in your application.

first three stores the contact details(name and phone number) in your application whereas the last one store's the contact details on the server.You have to create connection to the server for sending details to the server or retrieving details from the server.

Community
  • 1
  • 1
Anil Kothari
  • 7,653
  • 4
  • 20
  • 25