iOS - 显示存储在设备上的Twitter帐户

时间:2013-12-29 17:52:38

标签: ios xcode twitter ios7 xcode5

我正在尝试显示存储在用户设备上的Twitter帐户的名称。这是我尝试过的:

        if (granted == YES) {

        NSArray *twitterAccounts = [account accountsWithAccountType:accountType];

        _accounts = twitterAccounts;

    }

      cell.textLabel.text = [_accounts objectAtIndex:indexPath.row];

它只显示任何内容。

1 个答案:

答案 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