I'm having trouble accessing the address property of my contacts properly. I am able to successfuly access the phone number or address using the below method, but when getting just the address property I get a leak with the responsible frame being "+[ABStyleProvider". Can anyone tell me what this means or what I am doing wrong?
Below is inside the ABPeoplePickerNavigationController. Here is how I handle the selection of either a phone number or an address. I used an NSMutableString and CFDictionaryGetValueIfPresent to collect only non-null data and return it as a string.
Thanks for the help and any recommendations would be greatly appreciated.
if (person) {
if (property == kABPersonPhoneProperty){
ABMultiValueRef phones = ABRecordCopyValue(person, kABPersonPhoneProperty); //Dane
if (phones) {
CFIndex index = ABMultiValueGetIndexForIdentifier(phones, identifier);
NSString *phone = (NSString*)ABMultiValueCopyValueAtIndex(phones, index);
//Set textField with Phone Number
MyTextField.text = phone;
[phone release];
CFRelease(phones);
[self doneEnteringPhoneNumber];
}
}
else if (property == kABPersonAddressProperty){
ABMultiValueRef addresses = ABRecordCopyValue(person, kABPersonAddressProperty); //Dane
if (addresses) {
CFIndex index = ABMultiValueGetIndexForIdentifier(addresses, identifier);
CFDictionaryRef dict = ABMultiValueCopyValueAtIndex(addresses, index);
//Get Only valid address values (Non-Null)
CFTypeRef aString;
NSMutableString * address = [NSMutableString string];
if (CFDictionaryGetValueIfPresent(dict, kABPersonAddressStreetKey, &aString)){
[address appendString:[NSString stringWithFormat:@"%@ ",(NSString *)aString]];
}
if (CFDictionaryGetValueIfPresent(dict, kABPersonAddressCityKey, &aString)){
[address appendString:[NSString stringWithFormat:@"%@ ",(NSString *)aString]];
}
if (CFDictionaryGetValueIfPresent(dict, kABPersonAddressStateKey, &aString)){
[address appendString:[NSString stringWithFormat:@"%@ ",(NSString *)aString]];
}
if (CFDictionaryGetValueIfPresent(dict, kABPersonAddressZIPKey, &aString)){
[address appendString:[NSString stringWithFormat:@"%@ ",(NSString *)aString]];
}
CFRelease(dict);
//Set Address
DestinationTextField.text = address;
CFRelease(addresses);
//Auto trigger search for address
[self doneEnteringAddress];
}
}
}
As a followup, I completely removed all of this code and just displayed and dismissed the peoplePickerController in the following cases: 1. If A Person was selected 2. If A Property was selected 3. If user Cancels And in each case I see the above memory leak.
Instruments Extended Details of the leak: (16 Bytes). Leaks every time coming back to my main view?
0 libSystem.B.dylib calloc
1 libobjc.A.dylib _internal_class_createInstanceFromZone
2 libobjc.A.dylib class_createInstance
3 CoreFoundation +[NSObject(NSObject) allocWithZone:]
4 CoreFoundation +[NSObject(NSObject) alloc]
5 CoreFoundation +[NSObject(NSObject) new]
6 AddressBookUI +[ABStyleProvider defaultStyleProvider]
7 AddressBookUI -[ABPeoplePickerNavigationController initAsAddressBook:withAddressBook:]
8 AddressBookUI -[ABPeoplePickerNavigationController init]
9 Cartis -[MainViewController getContactPhoneNumber:] ****************.m:707
10 CoreFoundation -[NSObject(NSObject) performSelector:withObject:withObject:]
As well here is my PeoplePicker initialization and call from a IBAction method
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.peoplePickerDelegate = self;
NSArray * displayedProperties = [NSArray arrayWithObjects:
[NSNumber numberWithInt:kABPersonPhoneProperty],
[NSNumber numberWithInt:kABPersonAddressProperty],
nil];
picker.displayedProperties = displayedProperties;
//Dane - here
[self presentModalViewController:picker animated:YES];
[picker release];