0

Is it acceptable to call the method ABAddressBookRequestAccessWithCompletioneven when the application may already have been grated access by the user?

Woodstock
  • 22,184
  • 15
  • 80
  • 118

1 Answers1

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