Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to add information to a contact already existing in iPhone?

I have worked with such information, but I have not figured out how to add information to existing contacts.

 ABUnknownPersonViewController *unknownPersonViewController = [[ABUnknownPersonViewController alloc] init];
            unknownPersonViewController.displayedPerson = (ABRecordRef)[self buildContactDetails];
            unknownPersonViewController.allowsAddingToAddressBook = YES;
            [self.navigationController pushViewController:unknownPersonViewController animated:YES];
            [unknownPersonViewController release]; 


    - (ABRecordRef)buildContactDetails {
    NSLog(@"building contact details");
    ABRecordRef person = ABPersonCreate(); 
    CFErrorRef  error = NULL;  

    // firstname


    int i ; int taille ; 
    taille = [carte.informations count];
    NSString *nom=nil ;
    NSString *adresse=nil ;
    NSString *mail=nil,*prenom=nil,*tel=nil,*societe=nil,*profession=nil; 


    for (i=0; i<taille; i++) {

        if ([(Information*)[self.carte.informations objectAtIndex:i] label]==1) {
            nom = [(Information*)[self.carte.informations objectAtIndex:i] content];
        }
        else  if([(Information*)[self.carte.informations objectAtIndex:i] label]==2) {
            prenom=[(Information*)[self.carte.informations objectAtIndex:i] content];

        }
        else if([(Information*)[self.carte.informations objectAtIndex:i] label]==3){

            tel=[(Information*)[self.carte.informations objectAtIndex:i] content];

        }

        else if([(Information*)[self.carte.informations objectAtIndex:i] label]==4){

            societe=[(Information*)[self.carte.informations objectAtIndex:i] content];
        }       
        else if([(Information*)[self.carte.informations objectAtIndex:i] label]==5) {

            adresse = [(Information*)[self.carte.informations objectAtIndex:i] content];

        }
        else if ([(Information*)[self.carte.informations objectAtIndex:i] label]==6){
            mail = [(Information*)[self.carte.informations objectAtIndex:i] content];


        }
        else if ([(Information*)[self.carte.informations objectAtIndex:i] label]==7){
            profession = [(Information*)[self.carte.informations objectAtIndex:i] content];


        }


    }




    if(nom != nil && (![nom isEqualToString:@""])){
    ABRecordSetValue(person, kABPersonFirstNameProperty,nom, NULL);
    }

    if (prenom != nil && (![prenom isEqualToString:@""])) {
    ABRecordSetValue(person, kABPersonLastNameProperty, prenom, NULL);
    }

          if(mail != nil && (![mail isEqualToString:@""])){
       ABMutableMultiValueRef email = ABMultiValueCreateMutable(kABMultiStringPropertyType);
    ABMultiValueAddValueAndLabel(email, mail, CFSTR("email"), NULL);
    ABRecordSetValue(person, kABPersonEmailProperty, email, &error);
    CFRelease(email); 
          }




    //Phone 
     if(tel != nil && (![tel isEqualToString:@""])){
    ABMutableMultiValueRef Phone = ABMultiValueCreateMutable(kABMultiStringPropertyType);
    ABMultiValueAddValueAndLabel(Phone, tel, CFSTR("Phone"), NULL);
    ABRecordSetValue(person,kABPersonPhoneProperty, Phone, &error);
    CFRelease(Phone); 
     }


        if(adresse != nil && (![adresse isEqualToString:@""])){
    // Start of Address
    ABMutableMultiValueRef address = ABMultiValueCreateMutable(kABMultiDictionaryPropertyType);  
    NSMutableDictionary *addressDict = [[NSMutableDictionary alloc] init];
    [addressDict setObject:adresse forKey:(NSString *)kABPersonAddressStreetKey];   
     //[addressDict setObject:@"0568" forKey:(NSString *)kABPersonAddressZIPKey];  
     //[addressDict setObject:@"Oslo" forKey:(NSString *)kABPersonAddressCityKey]; 
       ABMultiValueAddValueAndLabel(address, addressDict, kABWorkLabel, NULL);
    ABRecordSetValue(person, kABPersonAddressProperty, address, &error); 
      [addressDict release];
      CFRelease(address); 
      // End of Address
}
              if (error != NULL) 
          NSLog(@"Error: %@", error);

    [(id)person autorelease];
    return person;
}


  - (void)newPersonViewController:(ABNewPersonViewController *)newPersonView          didCompleteWithNewPerson:(ABRecordRef)person{}

I have done like that in this example that I can add a new contact with my information but I can not for example add information for existing contacts

share|improve this question

1 Answer

up vote 1 down vote accepted

Did you go through this SO question. Adding phone number to iphone contact - but NOT replacing!. It will give you an idea.

Another one adding a new number to existing ABRecord in ABAddressBook - iPhone

See if this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.