-3
PFQuery *query = [PFQuery queryWithClassName:@"Category"];
// Retrieve the object by id
[query findObjectsInBackgroundWithBlock:^(NSArray * _Nullable objects, NSError * _Nullable error) {
// Now let's update it with some new data. In this case, only cheatMode and score
// will get sent to the cloud. playerName hasn't changed.
// NSLog(@"%@",[objects objectAtIndex:1]);
// NSLog(@"%@",[objects valueForKey:@"mensClothingType"]);
NSArray * result = [[objects valueForKey:@"mensClothingType"] componentsJoinedByString:@""];
NSLog(@"%@",result);
}];
}
どのようにオブジェクトから 'mensClothingType'をすべて取得し、それを1つの配列に入れることができますか?あなたの質問は、いくつかの関連するコードを更新して、あなたがしようとしているかを示すどうすればこの配列を取り、1つの配列にすることができますか?
(
(
Shirts
),
(
Jeans
)
)
:私は、アレイ「オブジェクトの
を読み出す場合、現在、私はこれを取得します。どのような問題があなたの試みで起こっているのかを説明してください。 – rmaddy
'NSArray'メソッド' arrayByAddingObjectsFromArray'を見てください。あなたがあなたのコードを投稿し、あなたが試したことがあれば、それを動作させる方法を示すことができます。 –
更新しました@rmaddy – farhan