I want to store specific info before adding it to my UITableView
I am accessing the End Users addressbook and getting the
First Name
Last Name
Street Address
City
State
Zip
Then I am using MKReverseGeocoder to get the GPS Coordinates
So I need to store the data from the addressbook and pair it to the GPS Coordinates that I received.
You can do a
NSDictionary(use[NSMutableDictionary][1]) and store it in the[NSUserDefaults][2].save:
load:
if you need it mutable again (to change the content)