2016-08-26 64 views
-2

我需要在swift中變異NSDictionary如何將NSDictionary的元素複製到swift字典?

因此,我需要將該NSDictionary的元素複製到swiftDictionary

有點像Objective-C的等效

[[NSMutableDictionary alloc] initWithDictionary:(nonnull NSDictionary *)]; 
+0

你應該簡單地停止使用NSDictionary和NSMutableDictionary,只是使用帶有let(常量)或var(可變)的Swift字典。 – Moritz

回答

2

詞典的是在迅速一struct,這是一個值類型。

let firstDictionary = .... 
let copyOfirstDictionary = firstDictionary// This will copy the contents from first dictionary to another. 
相關問題