0
[self.ACAstore requestAccessToAccountsWithType:twitterType withCompletionHandler:^(BOOL granted, NSError *error) {
    self.bPermissionToAccessStoreGranted=granted;
    [self vContinue];
    // Handle any error state here as you wish
}];

授予的结果完全是错误的。我希望用户首先得到询问。

可能的原因是 iPhone 没有 Twitter 帐户。在这种情况下,我想显示一个 twitter 登录页面,以便用户可以注册。

4

1 回答 1

2
[self.ACAstore requestAccessToAccountsWithType:twitterType withCompletionHandler:^(BOOL granted, NSError *error) {
if(granted)
{
    [self vContinue];
}
else {
    // Handle any error state here as you wish
}
}];

你想要这个吗?

于 2013-05-03T06:07:42.090 回答