ios - 对 NSMutableArray 进行排序
<p><div>
<aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
<div class="d-flex fd-column fw-nowrap">
<div class="d-flex fw-nowrap">
<div class="flex--item wmn0 fl1 lh-lg">
<div class="flex--item fl1 lh-lg">
<b>这个问题在这里已经有了答案</b>:
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要像这样使用 <code>NSNumericSearch</code> 选项和 <code>sortedArrayUsingComparator</code>。</p>
<p>如果您的数组包含自定义对象。</p>
<pre><code>NSArray *sortedArray = [myArray sortedArrayUsingComparator:^(Episode *ep1, Episode *ep2) {
return ;
}];
</code></pre>
<p>如果您的数组包含 <code>NSDictionary</code>。</p>
<pre><code>NSArray *sortedArray = [myArray sortedArrayUsingComparator:^(NSDictionary *dic1, NSDictionary *dic2) {
return [(NSString*) compare:(NSString*) options:NSNumericSearch];
}];
</code></pre></p>
<p style="font-size: 20px;">关于ios - 对 NSMutableArray 进行排序,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/40931751/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/40931751/
</a>
</p>
页:
[1]