【发布时间】:2023-12-25 04:45:01
【问题描述】:
在获得 Twitter 帐户访问权限后,我需要帮助来获取 Twitter 个人资料图片。下面的代码为我提供了个人资料句柄 (@twitter)。有没有办法在 iOS5 中直接从 Twitter 中提取这些信息?
这是我拥有的适用于手柄的东西:
-(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];
}
}
【问题讨论】:
标签: iphone twitter camera uiimage