Created
February 27, 2017 03:18
-
-
Save AntiMoron/0a7d2b65ee6853584be9be9af6741388 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//: Playground - noun: a place where people can play | |
import UIKit | |
var str = "Hello, playground" | |
fileprivate func _setDictionary( dict:inout [String: Any], value: Any, forKeys: ArraySlice<String>) { | |
guard forKeys.count > 1 else { | |
print(forKeys) | |
print("test2 \(forKeys) \(forKeys.count)") | |
dict[forKeys[0]] = value | |
return | |
} | |
if var subdict = dict[forKeys.first!] as? [String: Any] { | |
print("lala") | |
_setDictionary(dict: &subdict, value: value, forKeys: forKeys[1..<forKeys.count]) | |
dict[forKeys.first!] = subdict | |
} | |
} | |
func setDictionary( dict:inout [String: Any], value: Any, forKey: String) { | |
let keypaths = forKey.components(separatedBy: ".") | |
_setDictionary(dict: &dict, value: value, forKeys: keypaths[0..<keypaths.count]) | |
} | |
var tester = ["hahah": [ | |
"id":"123213", | |
"fuck": "tsetest" | |
]] as [String: Any] | |
setDictionary(dict: &tester, value: "444", forKey: "hahah.id") | |
print(tester) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment