I have big problem with getting images from AddressBook, below I paste my code. This imageData never has been deallocated, on my Allocations Instruments it looks that it`s always in memory it never release.
@autoreleasepool {
CFDataRef imageData = ABPersonCopyImageData(record);
if(imageData)
{
CFRetain(imageData);
CFRelease(imageData);
imageData = NULL;
imageData = nil;
}
}