ios - NSMutableDictionary 对键中的值进行排序
<p><p>我有一个 NSMutableDictionary:</p>
<pre><code>NSMutableDictionary = {
"03-19" = (
"Movie1",
"Movie2",
"Movie3"
);
"03-20" = (
"Movie1"
);
"03-21" = (
"Movie1",
"Movie2"
);
}
</code></pre>
<p>电影对象具有时间值(value)。我需要按 Movie.timeString 对每个键的值进行排序。我该怎么做?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>值-键对在存储在 <strong>NSDictionary</strong> 或 <strong>NSMutableDictionary</strong> 中时没有特定顺序。</p>
<p>您可以通过迭代每个键来重新编写代码,
然后迭代地对值(存储为 NSArray/NSMutableArray 对象,我假设)进行排序。
假设它确实是一个 <strong>NSMutableDictionary *dict</strong></p>
<pre><code>for(NSString *key in )
{
NSArray *arrTimes = ;
NSDateFormatter *dateFormatter = [ init];
;
NSArray *arrSortedTimes = [arrTimes sortedArrayUsingComparator:^NSComparisonResult(NSString *obj1, NSString *obj2)
{
NSDate *date1 = ;
NSDate *date2 = ;
return ;
}];
;
}
</code></pre>
<p>你可以试试这段代码,如果你有任何问题,请告诉我。</p></p>
<p style="font-size: 20px;">关于ios - NSMutableDictionary 对键中的值进行排序,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/29343988/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/29343988/
</a>
</p>
页:
[1]