Ich weiß, dass der Zugriff auf ein konfiguriertes Twitter-Konto unter Verwendung des Twitter-Frameworks in iOS 5 wie folgt erfolgen kann:
ACAccountStore *t_account = [[ACAccountStore alloc] init];
ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[account requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) {
if (granted == YES) {
}
}
Aber das Problem ist, dass ich kein vollständiges Konto benötige, sondern nur den Twitter-Namen, falls er einen auf den Twitter-Konten eingerichtet hat. Also, gibt es eine Möglichkeit, zu bekommen nur der Twitter-Handle aus dem Rahmen (nicht das vollständige Konto) ohne den Benutzer um Erlaubnis zu fragen ?