Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Load ABRecordRef from ABRecordID in iOS

I'm storing an array of ABRecordID (actually wrapped in NSNumber) into NSUserDefaults. So far so good but now I need to load those into ABRecordRef and can't find what function to use.

I'm just looking for the function that creates the ABRecordRef from an ABRecordID, that's all.

like image 456
Julian Avatar asked Jul 29 '12 02:07

Julian


1 Answers

Found it!

ABAddressBookGetPersonWithRecordID(ABAddressBookRef addressBook, ABRecordID recordID);
like image 84
Julian Avatar answered Nov 06 '22 14:11

Julian