반응형
[iOS] can't return type callbacks for 3 |
ABMutableMultiValueRef multiValueRef = ABMultiValueCreateMutable(kABPersonPhoneProperty);
for ( DataModel* model in array ){
ABMultiValueAddValueAndLabel(multiValueRef, (__bridge CFTypeRef)model, model, NULL);
}
ABRecordSetValue(self.record, property, multiValueRef, nil);
CFRelease(multiValueRef);
위와 같이 코딩을 했더니 "can't return type callbacks for 3" 에러가 났다.
여기서 kABPersonPhoneProperty 를 kABMultiStringPropertyType 로 변경해면 해당 이슈가 발생하지 않는당!!
다시 말해 ABMultiValueCreateMutable() 의 parameter 는 type 에 대한 propertyType 이 들어가야 한다.
반응형
'프로그래밍 놀이터 > iOS' 카테고리의 다른 글
[iOS Study] 병렬 프로그래밍 가이드 ( operation queue ) (0) | 2017.07.02 |
---|---|
[iOS Study] 병렬 프로그래밍 가이드 ( 병렬 앱 디자인 ) (0) | 2017.07.01 |
[iOS] Java 의 equals 구현하기 (0) | 2017.06.27 |
[iOS] 연락처의 Favorite 정보를 AddressBook 을 통해 가져올 수 있는가? (0) | 2017.06.26 |
[iOS] ABAddressBook 을 사용하려면 permission 이 필요하다. (0) | 2017.06.25 |
댓글