我有一個存儲NSMutableDictionary
在NSUSerDefaluts
,我已經檢索成功。從swift中獲取NSMutableDictionary的值?
if var tempFeed: NSDictionary = NSUserDefaults.standardUserDefaults().dictionaryForKey("selectedFeeds") {
println("selected Feed: \(tempFeed)")
savedDictionary = tempFeed.mutableCopy() as NSMutableDictionary
的問題是我怎麼可以轉換MutableDictionary到一個數組/ MuatableArray和重複它,這樣我可以得到it.Here的值是字典。我想要獲取所有網址的值。
{
4 = {
URL = "myurl1";
};
5 = {
URL = "myurl3";
};
6 = {
URL = "myurl3";
};
}
我嘗試了一些失敗的選項。 謝謝。
這是我done.Thanks。我也嘗試了@Airspped Velocity和@Christian的答案,但它給出錯誤,比如'NSDictionary沒有名爲Value的mebmer'。感謝您的答案。 – PatientC 2015-03-19 11:34:47
很高興幫助,但Airspeed的答案列舉了您擁有的所有可能性,並且您可以選擇任何可能性。 – sasquatch 2015-03-19 13:25:06