我从地址簿获取图像有很大的问题,下面我粘贴我的代码。这个 imageData 从来没有被释放,在我的 Allocations Instruments 上它看起来总是在内存中它永远不会释放。
@autoreleasepool {
CFDataRef imageData = ABPersonCopyImageData(record);
if(imageData)
{
CFRetain(imageData);
CFRelease(imageData);
imageData = NULL;
imageData = nil;
}
}