how can i add a website to the contacts of the iphone/ipad address book? I managed to add email, phone numbers, but i cannot did the same with a site. Presently, i'm using this code to have the site written in the address book and displayed, but clicking on it i get displayed the form to write an email
const CFStringRef siteLabel = CFSTR("Site");
ABMutableMultiValueRef multiEmail = ABMultiValueCreateMutable(kABMultiStringPropertyType);
ABMultiValueAddValueAndLabel(multiEmail, sito, siteLabel, NULL);
ABRecordSetValue(newPerson, kABPersonEmailProperty, multiEmail, &error);
CFRelease(multiEmail);