JSON
public struct JSON
Undocumented
-
Creates a JSON using the data.
Declaration
Swift
public init(data: Data, options opt: JSONSerialization.ReadingOptions = []) throwsParameters
dataThe NSData used to convert to json.Top level object in data is an NSArray or NSDictionary
optThe JSON serialization reading options.
[]by default.Return Value
The created JSON
-
Creates a JSON object
Note
this does not parse aStringinto JSON, instead useinit(parseJSON: String)Declaration
Swift
public init(_ object: Any)Parameters
objectthe object
Return Value
the created JSON object
-
Parses the JSON string into a JSON object
Declaration
Swift
public init(parseJSON jsonString: String)Parameters
jsonthe JSON string
Return Value
the created JSON object
-
Creates a JSON from JSON string
Declaration
Swift
@available(*, deprecated, message: "Use instead `init(parseJSON: ﹚`") public static func parse(_ json: String) -> JSONParameters
stringNormal json string like ‘{
a
:b
}’Return Value
The created JSON
-
Merges another JSON into this JSON, whereas primitive values which are not present in this JSON are getting added, present values getting overwritten, array values getting appended and nested JSONs getting merged the same way.
Throws
throwsErrorWrongTypeif the other JSONs differs in type on the top level.Declaration
Swift
public mutating func merge(with other: JSON) throwsParameters
otherThe JSON which gets merged into this JSON
-
Merges another JSON into this JSON and returns a new JSON, whereas primitive values which are not present in this JSON are getting added, present values getting overwritten, array values getting appended and nested JSONS getting merged the same way.
Throws
throwsErrorWrongTypeif the other JSONs differs in type on the top level.Declaration
Swift
public func merged(with other: JSON) throws -> JSONParameters
otherThe JSON which gets merged into this JSON
Return Value
New merged JSON
-
JSON type, fileprivate setter
Declaration
Swift
public fileprivate(set) var type: Type -
Error in JSON, fileprivate setter
Declaration
Swift
public fileprivate(set) var error: SwiftyJSONError? -
Object in JSON
Declaration
Swift
public var object: Any { get set } -
Undocumented
Declaration
Swift
public static var null: JSON { get }
-
Declaration
Swift
public typealias Index = JSONRawIndex -
Declaration
Swift
public var startIndex: Index { get } -
Declaration
Swift
public var endIndex: Index { get } -
Declaration
Swift
public subscript(position: Index) -> (String, JSON) { get }
-
Find a json in the complex data structures by using array of Int and/or String as path.
let json = JSON[data] let path = [9,
list
,person
,name
] let name = json[path]The same as: let name = json[9][
list
][person
][name
]Declaration
Swift
public subscript(path: [JSONSubscriptType]) -> JSON { get set }Parameters
pathThe target json’s path. Example:
Return Value
Return a json found by the path or a null json with error
-
Find a json in the complex data structures by using array of Int and/or String as path.
let name = json[9,
list
,person
,name
]The same as: let name = json[9][
list
][person
][name
]Declaration
Swift
public subscript(path: JSONSubscriptType...) -> JSON { get set }Parameters
pathThe target json’s path. Example:
Return Value
Return a json found by the path or a null json with error
-
Declaration
Swift
public init(stringLiteral value: StringLiteralType) -
Declaration
Swift
public init(extendedGraphemeClusterLiteral value: StringLiteralType) -
Declaration
Swift
public init(unicodeScalarLiteral value: StringLiteralType)
-
Declaration
Swift
public init(integerLiteral value: IntegerLiteralType)
-
Declaration
Swift
public init(booleanLiteral value: BooleanLiteralType)
-
Declaration
Swift
public init(floatLiteral value: FloatLiteralType)
-
Declaration
Swift
public init(dictionaryLiteral elements: (String, Any)...)
-
Declaration
Swift
public init(arrayLiteral elements: Any...)
-
Declaration
Swift
public init(nilLiteral: ())
-
Declaration
Swift
public init?(rawValue: Any) -
Declaration
Swift
public var rawValue: Any { get } -
Undocumented
Declaration
Swift
public func rawData(options opt: JSONSerialization.WritingOptions = JSONSerialization.WritingOptions(rawValue: 0)) throws -> Data -
Undocumented
Declaration
Swift
public func rawString(_ encoding: String.Encoding = .utf8, options opt: JSONSerialization.WritingOptions = .prettyPrinted) -> String? -
Undocumented
Declaration
Swift
public func rawString(_ options: [writingOptionsKeys : Any]) -> String?
-
Declaration
Swift
public var description: String { get } -
Declaration
Swift
public var debugDescription: String { get }
-
Undocumented
Declaration
Swift
public var array: [JSON]? { get } -
Undocumented
Declaration
Swift
public var objectArray: [[String : Any]]? { get } -
Undocumented
Declaration
Swift
public var arrayValue: [JSON] { get } -
Undocumented
Declaration
Swift
public var arrayObject: [Any]? { get set }
-
Undocumented
Declaration
Swift
public var dictionary: [String : JSON]? { get } -
Undocumented
Declaration
Swift
public var dictionaryValue: [String : JSON] { get } -
Undocumented
Declaration
Swift
public var dictionaryObject: [String : Any]? { get set }
-
Undocumented
Declaration
Swift
public var bool: Bool? { get set } -
Undocumented
Declaration
Swift
public var boolValue: Bool { get set }
-
Undocumented
Declaration
Swift
public var string: String? { get set } -
Undocumented
Declaration
Swift
public var stringValue: String { get set }
-
Undocumented
Declaration
Swift
public var number: NSNumber? { get set } -
Undocumented
Declaration
Swift
public var numberValue: NSNumber { get set }
-
Undocumented
Declaration
Swift
public var null: NSNull? { get set } -
Undocumented
Declaration
Swift
public func exists() -> Bool
-
Undocumented
Declaration
Swift
public var double: Double? { get set } -
Undocumented
Declaration
Swift
public var doubleValue: Double { get set } -
Undocumented
Declaration
Swift
public var float: Float? { get set } -
Undocumented
Declaration
Swift
public var floatValue: Float { get set } -
Undocumented
Declaration
Swift
public var int: Int? { get set } -
Undocumented
Declaration
Swift
public var intValue: Int { get set } -
Undocumented
Declaration
Swift
public var uInt: UInt? { get set } -
Undocumented
Declaration
Swift
public var uIntValue: UInt { get set } -
Undocumented
Declaration
Swift
public var int8: Int8? { get set } -
Undocumented
Declaration
Swift
public var int8Value: Int8 { get set } -
Undocumented
Declaration
Swift
public var uInt8: UInt8? { get set } -
Undocumented
Declaration
Swift
public var uInt8Value: UInt8 { get set } -
Undocumented
Declaration
Swift
public var int16: Int16? { get set } -
Undocumented
Declaration
Swift
public var int16Value: Int16 { get set } -
Undocumented
Declaration
Swift
public var uInt16: UInt16? { get set } -
Undocumented
Declaration
Swift
public var uInt16Value: UInt16 { get set } -
Undocumented
Declaration
Swift
public var int32: Int32? { get set } -
Undocumented
Declaration
Swift
public var int32Value: Int32 { get set } -
Undocumented
Declaration
Swift
public var uInt32: UInt32? { get set } -
Undocumented
Declaration
Swift
public var uInt32Value: UInt32 { get set } -
Undocumented
Declaration
Swift
public var int64: Int64? { get set } -
Undocumented
Declaration
Swift
public var int64Value: Int64 { get set } -
Undocumented
Declaration
Swift
public var uInt64: UInt64? { get set } -
Undocumented
Declaration
Swift
public var uInt64Value: UInt64 { get set }
JSON Structure Reference