ABMutableMultiValueRef *address = (NSString *)ABRecordCopyValue(thisPerson, kABPersonAddressProperty);
for (CFIndex i=0; i < ABMultiValueGetCount(address); i++) {
CFDictionaryRef dict = ABMultiValueCopyValueAtIndex(address, i);
The code works but generates a warning. Any clue?
Warning: FirstViewController.m:46: warning: initialization from incompatible pointer type