基本的に連想配列(キーと値としての文字列)として使用しているNSDictionary(plistに保存)があります。アプリケーションの一部としてキーの配列を使用したいのですが、それらを特定の順序にしたいです (実際には、それらをソートするアルゴリズムを記述できる順序ではありません)。キーの個別の配列をいつでも保存できますが、辞書のキーと配列の値を常に更新し、それらが常に対応していることを確認する必要があるため、それはちょっと面倒に思えます。現在、私は [myDictionary allKeys] を使用していますが、明らかに、これは任意の保証されていない順序でそれらを返します。Objective-C に欠けているデータ構造はありますか? これをよりエレガントに行う方法について何か提案はありますか?
9 に答える
関連するキーの NSMutableArray を持つソリューションはそれほど悪くありません。NSDictionary のサブクラス化を回避し、アクセサーの作成に注意すれば、同期を維持するのはそれほど難しくありません。
私は実際の答えでゲームに遅れていますが、CHOrderedDictionaryを調査することに興味があるかもしれません。これは、キーの順序を維持するための別の構造をカプセル化する NSMutableDictionary のサブクラスです。(これはCHDataStructures.frameworkの一部です。) 辞書と配列を別々に管理するよりも便利だと思います。
開示:これは私が書いたオープンソースコードです。この問題に直面している他の人に役立つことを願っています。
これを取得できる組み込みの方法はありません。しかし、単純なロジックが機能します。辞書を準備するときに、各キーの前にいくつかの数値テキストを追加するだけです。お気に入り
NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:
@"01.Created",@"cre",
@"02.Being Assigned",@"bea",
@"03.Rejected",@"rej",
@"04.Assigned",@"ass",
@"05.Scheduled",@"sch",
@"06.En Route",@"inr",
@"07.On Job Site",@"ojs",
@"08.In Progress",@"inp",
@"09.On Hold",@"onh",
@"10.Completed",@"com",
@"11.Closed",@"clo",
@"12.Cancelled", @"can",
nil];
すべてのキーを配置と同じ順序で取得しながら sortingArrayUsingSelector を使用できる場合。
NSArray *arr = [[dict allKeys] sortedArrayUsingSelector:@selector(localizedStandardCompare:)];
UIView でキーを表示したい場所で、先頭の 3 文字を切り取るだけです。
NSDictionaryをサブクラス化する場合は、少なくとも次のメソッドを実装する必要があります。
- NSDictionary
-count
-objectForKey:
-keyEnumerator
- NSMutableDictionary
-removeObjectForKey:
-setObject:forKey:
- NSCopying / NSMutableCopying
-copyWithZone:
-mutableCopyWithZone:
- NSCoding
-encodeWithCoder:
-initWithCoder:
- NSFastEnumeration (Leopardの場合)
-countByEnumeratingWithState:objects:count:
必要なことを行う最も簡単な方法は、操作する独自のNSMutableDictionaryと順序付けられたキーのセットを格納するNSMutableArrayを含むNSMutableDictionaryのサブクラスを作成することです。
オブジェクトをエンコードする予定がない場合は、実装-encodeWithCoder:
をスキップして、-initWithCoder:
上記の10個のメソッドのすべてのメソッド実装は、ホストされているディクショナリまたは順序付けられたキー配列を直接通過します。
ちょっとした追加: 数字キーによる並べ替え (小さなコードには簡略表記を使用)
// the resorted result array
NSMutableArray *result = [NSMutableArray new];
// the source dictionary - keys may be Ux timestamps (as integer, wrapped in NSNumber)
NSDictionary *dict =
@{
@0: @"a",
@3: @"d",
@1: @"b",
@2: @"c"
};
{// do the sorting to result
NSArray *arr = [[dict allKeys] sortedArrayUsingSelector:@selector(compare:)];
for (NSNumber *n in arr)
[result addObject:dict[n]];
}
クイック&ダーティ:
辞書 (ここでは「myDict」と呼びます) を注文する必要がある場合は、次のようにします。
NSArray *ordering = [NSArray arrayWithObjects: @"Thing",@"OtherThing",@"Last Thing",nil];
次に、辞書を並べ替える必要がある場合は、インデックスを作成します。
NSEnumerator *sectEnum = [ordering objectEnumerator];
NSMutableArray *index = [[NSMutableArray alloc] init];
id sKey;
while((sKey = [sectEnum nextObject])) {
if ([myDict objectForKey:sKey] != nil ) {
[index addObject:sKey];
}
}
これで、*index オブジェクトには適切なキーが正しい順序で含まれるようになります。このソリューションでは、すべてのキーが必ずしも存在する必要はないことに注意してください。これは、私たちが扱っている通常の状況です...
NSDictionary の順序付きサブクラスの最小限の実装 ( https://github.com/nicklockwood/OrderedDictionaryに基づく)。必要に応じて自由に拡張してください。
スイフト 3 および 4
class MutableOrderedDictionary: NSDictionary {
let _values: NSMutableArray = []
let _keys: NSMutableOrderedSet = []
override var count: Int {
return _keys.count
}
override func keyEnumerator() -> NSEnumerator {
return _keys.objectEnumerator()
}
override func object(forKey aKey: Any) -> Any? {
let index = _keys.index(of: aKey)
if index != NSNotFound {
return _values[index]
}
return nil
}
func setObject(_ anObject: Any, forKey aKey: String) {
let index = _keys.index(of: aKey)
if index != NSNotFound {
_values[index] = anObject
} else {
_keys.add(aKey)
_values.add(anObject)
}
}
}
利用方法
let normalDic = ["hello": "world", "foo": "bar"]
// initializing empty ordered dictionary
let orderedDic = MutableOrderedDictionary()
// copying normalDic in orderedDic after a sort
normalDic.sorted { $0.0.compare($1.0) == .orderedAscending }
.forEach { orderedDic.setObject($0.value, forKey: $0.key) }
// from now, looping on orderedDic will be done in the alphabetical order of the keys
orderedDic.forEach { print($0) }
Objective-C
@interface MutableOrderedDictionary<__covariant KeyType, __covariant ObjectType> : NSDictionary<KeyType, ObjectType>
@end
@implementation MutableOrderedDictionary
{
@protected
NSMutableArray *_values;
NSMutableOrderedSet *_keys;
}
- (instancetype)init
{
if ((self = [super init]))
{
_values = NSMutableArray.new;
_keys = NSMutableOrderedSet.new;
}
return self;
}
- (NSUInteger)count
{
return _keys.count;
}
- (NSEnumerator *)keyEnumerator
{
return _keys.objectEnumerator;
}
- (id)objectForKey:(id)key
{
NSUInteger index = [_keys indexOfObject:key];
if (index != NSNotFound)
{
return _values[index];
}
return nil;
}
- (void)setObject:(id)object forKey:(id)key
{
NSUInteger index = [_keys indexOfObject:key];
if (index != NSNotFound)
{
_values[index] = object;
}
else
{
[_keys addObject:key];
[_values addObject:object];
}
}
@end
利用方法
NSDictionary *normalDic = @{@"hello": @"world", @"foo": @"bar"};
// initializing empty ordered dictionary
MutableOrderedDictionary *orderedDic = MutableOrderedDictionary.new;
// copying normalDic in orderedDic after a sort
for (id key in [normalDic.allKeys sortedArrayUsingSelector:@selector(compare:)]) {
[orderedDic setObject:normalDic[key] forKey:key];
}
// from now, looping on orderedDic will be done in the alphabetical order of the keys
for (id key in orderedDic) {
NSLog(@"%@:%@", key, orderedDic[key]);
}
Swift 3 の場合。次のアプローチを試してください
//Sample Dictionary
let dict: [String: String] = ["01.One": "One",
"02.Two": "Two",
"03.Three": "Three",
"04.Four": "Four",
"05.Five": "Five",
"06.Six": "Six",
"07.Seven": "Seven",
"08.Eight": "Eight",
"09.Nine": "Nine",
"10.Ten": "Ten"
]
//Print the all keys of dictionary
print(dict.keys)
//Sort the dictionary keys array in ascending order
let sortedKeys = dict.keys.sorted { $0.localizedCaseInsensitiveCompare($1) == ComparisonResult.orderedAscending }
//Print the ordered dictionary keys
print(sortedKeys)
//Get the first ordered key
var firstSortedKeyOfDictionary = sortedKeys[0]
// Get range of all characters past the first 3.
let c = firstSortedKeyOfDictionary.characters
let range = c.index(c.startIndex, offsetBy: 3)..<c.endIndex
// Get the dictionary key by removing first 3 chars
let firstKey = firstSortedKeyOfDictionary[range]
//Print the first key
print(firstKey)