Up

NSJSONSerialization class documentation

Authors

Generated by Gregory John Casamento,,,

Date: Generated at 2023-12-20 19:35:39 -0500

Software documentation for the NSJSONSerialization class

NSJSONSerialization : NSObject

Declared in:
Foundation/NSJSONSerialization.h
Availability: OpenStep

NSJSONSerialization implements serializing and deserializing acyclic object graphs in JSON.
Method summary

JSONObjectWithData: options: error: 

+ (id) JSONObjectWithData: (NSData*)data options: (NSJSONReadingOptions)opt error: (NSError**)error;
Availability: OpenStep

Description forthcoming.

JSONObjectWithStream: options: error: 

+ (id) JSONObjectWithStream: (NSInputStream*)stream options: (NSJSONReadingOptions)opt error: (NSError**)error;
Availability: OpenStep

Description forthcoming.

dataWithJSONObject: options: error: 

+ (NSData*) dataWithJSONObject: (id)obj options: (NSJSONWritingOptions)opt error: (NSError**)error;
Availability: OpenStep

Description forthcoming.

isValidJSONObject: 

+ (BOOL) isValidJSONObject: (id)obj;
Availability: OpenStep

Description forthcoming.

writeJSONObject: toStream: options: error: 

+ (NSInteger) writeJSONObject: (id)obj toStream: (NSOutputStream*)stream options: (NSJSONWritingOptions)opt error: (NSError**)error;
Availability: OpenStep

Description forthcoming.


Up