PPJSONSerialization icon indicating copy to clipboard operation
PPJSONSerialization copied to clipboard

The Ultimate JSON Serialization for Swift.

Results 4 PPJSONSerialization issues
Sort by recently updated
recently updated
newest added

I tried to run your same example with JSON data and same name of the class. but the data is still empty. Please provide the solution.

class Model: PPJSONSerialization { var a: Int? = 0 var b: Int = 0 var c: Int? override init() { super.init() } } only Model.b can transfer for json string

I have a json where am array can be either, [String] or [Dictionary], so i decided to use [AnyObject], but PPJSONSerialization fails to map and the array has always 0...