我想问一下如何检测ios6.0上的应用是否首次访问我的AddressBook。我了解到,无论是否重新安装应用程序,系统都只会认为第一次安装是第一次启动,这是第一次启动应用程序。问题是我想提醒用户允许应用程序使用UIAlertView访问AddressBook,但此警报视图将在系统的警报视图后不久出现。如何避免这种情况。任何帮助将不胜感激。
答案 0 :(得分:2)
你基本上应该忽略ABAddressBookRequestAccessWithCompletion
。这没用。如果您想知道您是否有权访问数据库,请致电ABAddressBookGetAuthorizationStatus()
。
ABAddressBookRequestAccessWithCompletion
要求用户访问地址簿。但事实并非如此。我现在将证明ABAddressBookRequestAccessWithCompletion
没用。有两种情况:
(1)如果这是一个完全未知的新应用,ABAddressBookRequestAccessWithCompletion
是非正式的:当应用尝试访问地址簿时,将自动向用户请求访问,因此不需要{{1 }}
(2)如果用户拒绝或被授予访问权限,ABAddressBookRequestAccessWithCompletion
是无操作的!叫它什么都不做;它不提出了访问请求警报!
所以ABAddressBookRequestAccessWithCompletion
只是一个错误,应该被忽略。
编辑在iOS 6.1中,此行为似乎已更改。 (我假设我在iOS 6.0上的测试是有效的,但我完全有理由相信它们是。)但是,现在,在iOS 6.1中,ABAddressBookRequestAccessWithCompletion
永远不会导致授权警报出现。只有 方式才能显示ABAddressBookCreateWithOptions
!因此,这个功能现在必不可少;如果ABAddressBookRequestAccessWithCompletion
该访问权限未确定,则必须致电ABAddressBookGetAuthorizationStatus
,否则您将无法访问。
答案 1 :(得分:1)
我已经通过这种方式解决了它。
__block BOOL accessGranted;
- (IBAction)accessAddressBook:(id)sender {
CFErrorRef error;
ABAddressBookRef addressBook = ABAddressBookCreateWithOptions(NULL,&error);
ABAddressBookRequestAccessWithCompletion(addressBook, ^(bool granted, CFErrorRef error) {
// accessGranted = granted;
if (!accessGranted && !granted) {
UIAlertView * alertView = [[UIAlertView alloc]initWithTitle:@"Deny Access" message:@"Deny" delegate:self cancelButtonTitle:nil otherButtonTitles:@"cancel", nil];
[alertView show];
[alertView release];
}
});
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if ([alertView.message isEqualToString:@"use contact"] || alertView.message == @"use contact") {
accessGranted = YES;
}
}
答案 2 :(得分:0)
当您调用ABAddressBookRequestAccessWithCompletion()时,系统已显示警告 只需使用您自己的字符串扩充系统应用程序。
您应该在InfoPlist.strings中:
"NSContactsUsageDescription" = "Tap 'OK' or this app is useless.";