Is it acceptable to call the method ABAddressBookRequestAccessWithCompletion
even when the application may already have been grated access by the user?
Asked
Active
Viewed 111 times
0

Woodstock
- 22,184
- 15
- 80
- 118
1 Answers
1
You should only call ABAddressBookRequestAccessWithCompletion
if a call to ABAddressBookGetAuthorizationStatus
returns kABAuthorizationStatusNotDetermined
.

rmaddy
- 314,917
- 42
- 532
- 579
-
Why? In that case the call to `ABAddressBookGetAuthorizationStatus` will return a specific value. There will be no need to call `ABAddressBookRequestAccessWithCompletion` in that case. – rmaddy Jun 01 '14 at 15:32