NSMutableArray
並べ替えたいのは次のようになります。
(
{
"title" = "Bags";
"price" = "$200";
},
{
"title" = "Watches";
"price" = "$40";
},
{
"title" = "Earrings";
"price" = "$1000";
}
)
のNSMutableArray
コレクションを含むNSMutableArray
です。price
最初に で、次にで並べ替えたいtitle
。
NSSortDescriptor *sortByPrices = [[NSSortDescriptor alloc] initWithKey:@"price" ascending:YES];
NSSortDescriptor *sortByTitle = [[NSSortDescriptor alloc] initWithKey:@"title" ascending:YES];
[arrayProduct sortedArrayUsingDescriptors:[NSArray arrayWithObjects:sortByPrices,sortByTitle,nil]];
ただし、それは機能していないようです。ネストされた をソートする方法はNSMutableArray
?