0

私は配列内のACAccountストアを次のように取っています-

 NSArray *arrayOfAccounts = [accountStore accountsWithAccountType:accountType];

arrayOfAccounts を印刷することにより -

  (
  "type:com.apple.twitter\nidentifier: 9E8DD039-D210-49EB-90D3-797017EC9F37\naccountDescription: @kaleshnewage\nusername: kaleshnewage\nobjectID: x-coredata://8CD38D83-7C1C-4542-BE4B-7007B6586675/Account/p24\nenabledDataclasses: {(\n)}\nenableAndSyncableDataclasses: {(\n)}\nproperties: {\n    \"user_id\" = 1407688573;\n}\nparentAccount: (null)\nowningBundleID:(null)",
"type:com.apple.twitter\nidentifier: 888F056F-8BB2-4847-91D3-CFFE93770F01\naccountDescription: @dasarun5\nusername: dasarun5\nobjectID: x-coredata://8CD38D83-7C1C-4542-BE4B-7007B6586675/Account/p25\nenabledDataclasses: {(\n)}\nenableAndSyncableDataclasses: {(\n)}\nproperties: {\n    \"user_id\" = 120014192;\n}\nparentAccount: (null)\nowningBundleID:(null)",
"type:com.apple.twitter\nidentifier: 3BB57617-0436-4801-B302-CE7C67D2E2A5\naccountDescription: @arunjoseph700\nusername: arunjoseph700\nobjectID: x-coredata://8CD38D83-7C1C-4542-BE4B-7007B6586675/Account/p28\nenabledDataclasses: {(\n)}\nenableAndSyncableDataclasses: {(\n)}\nproperties: {\n    \"user_id\" = 1068508537;\n}\nparentAccount: (null)\nowningBundleID:(null)"
)

今、ユーザー名だけを別の配列に取りたいのですが、これを行うにはどうすればよいですか?

4

1 に答える 1

2

accountsWithAccountType:の配列を返すACAccountため、次のようなことができます。

for (ACAccount *account in arrayOfAccounts) {
    NSLog(@"Username: %@", account.username);
}
于 2013-10-30T17:14:04.767 に答える