This is one point I don't understander that the method "public init (jsonDictionary)" in the file swiftJSON.swift
public init( jsonDictionary:[String: JSON]) {
var dictionary = String: AnyObject
for (key, json) in jsonDictionary {
dictionary[key] = json.object
}
self.init(dictionary)
}
The method “self.init(dictionary)” doesn't lead to cycle-reused?
This is one point I don't understander that the method "public init (jsonDictionary)" in the file swiftJSON.swift
public init( jsonDictionary:[String: JSON]) {
var dictionary = String: AnyObject
for (key, json) in jsonDictionary {
dictionary[key] = json.object
}
self.init(dictionary)
}
The method “self.init(dictionary)” doesn't lead to cycle-reused?