According to the documentation with iOS6, the address book should be created using ABAddressBookCreateWithOptions.
He also says that if the caller does not have access to db, then this method returns null.
However, access is requested by calling ABAddressBookRequestAccessWithCompletion, which takes the parameter ABAddressBookRef as the parameter.
Thus, according to the documentation, you cannot get ABAddressBookRef in the first place if you do not have access, but in order to access you need to pass ABAddressBookRef as a parameter.
E. Catch 22? How do you then create an ABAddressBookRef?
You have example code / tutorial code for this, but not found.
TIA
source share