小编Saa*_*adi的帖子

NSMutableDictionary无法正确排序

让我有未分类的NSMutableDictionary

    {
        A = "3";
        B = "2"; 
        C = "4";
    }
Run Code Online (Sandbox Code Playgroud)

我需要结果如下:

    {
        B = "2";
        A = "3";
        C = "4";
    }
Run Code Online (Sandbox Code Playgroud)

如何在目标c中实现这一结果.

一个简单的代码实现将不胜感激.

iphone xcode objective-c nsmutabledictionary

1
推荐指数
1
解决办法
1639
查看次数

标签 统计

iphone ×1

nsmutabledictionary ×1

objective-c ×1

xcode ×1