我有一个 ios 6.1 模拟器的大问题。我的应用程序未显示在手机(模拟器)设置中。见上图:
请求帐户允许的代码是正确的,在物理设备上有效:
ACAccountStore *account = [[ACAccountStore alloc] init];
ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:
ACAccountTypeIdentifierTwitter];
[account requestAccessToAccountsWithType:accountType options:nil
completion:^(BOOL granted, NSError *error)
{
if (!granted){
NSLog(@"____TW not granted:%@ ",error.localizedDescription);
} else {
NSLog(@"____TW granted");
}
}];
怎么解决呢?我试图重新初始化模拟器但没有效果。
谢谢