我在我的项目中使用ARC,并在下面警告潜在的内存泄漏(请参阅注释行)。不知道如何处理它。
-( BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker
shouldContinueAfterSelectingPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier{
ABMultiValueRef phoneProperty = ABRecordCopyValue(person,property);
// Call to function 'ABRecordCopyValue' returns a Core Foundation object with a +1 retain count
int idx = ABMultiValueGetIndexForIdentifier (phoneProperty, identifier);
emailToValue= (__bridge_transfer NSString *)ABMultiValueCopyValueAtIndex(phoneProperty,idx);
// Object Leaked: object allocated and stored into 'phoneProperty' is not referenced later in this execution path and has a retain count of +1
任何建议都将受到赞赏。
提前致谢。
答案 0 :(得分:3)
ARC仅管理Objective-C对象的内存,因此phoneProperty
返回的ABRecordCopyValue
(方法中的Copy
表示它已被保留)需要由您的应用发布使用CFRelease
。
答案 1 :(得分:2)
无论是否使用ARC,您都必须自己处理CFMemory。 在离开之前添加以下代码:
if (phoneProperty){
CFRelease(phoneProperty);
}