Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

dastagir

macrumors newbie
Original poster
Sep 8, 2008
1
0
Hi,


I am able to read the contacts in iPhone simulator contacts using following code.But when i add new contact in iPhone simulator from objective C then this code not give new contact which i add..
Please tell me the what’s problem…


Thank you..

code:
—-

ABAddressBookRef ab;
ab = ABAddressBookCreate();
int len = (int) ABAddressBookGetPersonCount(ab);
int i;
for(i = 1; i < (len + 1); i++)
{
AABRecordRef person = ABAddressBookGetPersonWithRecordID(ab,(ABRecordID) i);
CFStringRef firstName, lastName;
char *lastNameString, *firstNameString;
firstName = ABRecordCopyValue(person, kABPersonFirstNameProperty);
}
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.