Мне нужна помощь в получении изображения профиля в Твиттере, как только я получу доступ к учетной записи Twitter.Код ниже дает мне дескриптор профиля (@twitter).Есть ли способ получить эту информацию прямо из Twitter в iOS5?
Вот что у меня есть, что работает для ручки:
-(void)getTwitterName
{
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error)
{
if(granted) {
NSArray *accountsArray = [accountStore accountsWithAccountType:accountType];
}
}