我在 ARC 下收到以下警告:
Initializing 'ABMultiValueRef *' (aka 'const void **') with an expression of type 'CFTypeRef' (aka 'const void *') discards qualifiers.
在线的
ABMultiValueRef *phones = ABRecordCopyValue(abPerson, kABPersonPhoneProperty);
abPerson
是ABRecordRef
类型。
这段代码有什么问题?
PS我检查过,一切正常