我正在尝试显示存储在用户设备上的Twitter帐户的名称。这是我尝试过的:
if (granted == YES) {
NSArray *twitterAccounts = [account accountsWithAccountType:accountType];
_accounts = twitterAccounts;
}
cell.textLabel.text = [_accounts objectAtIndex:indexPath.row];
它只显示任何内容。
答案 0 :(得分:0)
尝试使用此代替cell.textLabel.text = [_accounts objectAtIndex:indexPath.row];
:
ACAccount *account = [_accounts objectAtIndex:indexPath.row];
cell.textLabel.text = account.username;
_accounts
数组应该持有ACAccount实例。您可以在此处找到其他一些属性:ACAccount Class Reference