私は Accounts フレームワークで遊んでおり、テスト中にアカウントへのアプリのアクセスを拒否しました。次のコードは、実行するたびに Denied を返します。
[[self accountStore] requestAccessToAccountsWithType:twitterType options:nil completion:^(BOOL granted, NSError *error) {
if (granted) {
accounts = [[self accountStore] accountsWithAccountType:twitterType];
} else if (error != nil) {
NSLog(@"Failed to list Twitter accounts %@", error);
} else {
NSLog(@"Access denied");
}
}];
残念なのは、リセットする場所がわからず、グーグルが役に立たないことです。iOS で修正する方法を見てきましたが、Mac アプリを実行していて、解決策が適用されません。
Account Framework API ドキュメントはまったく役に立ちません。
手のひら顔。