Decodes a property list that was previously encoded with encode
.
SDK
- macOS 10.0+
Framework
- Foundation
Declaration
- (id)decodePropertyList;
Decodes a property list that was previously encoded with encode
.
SDK
Framework
- (id)decodePropertyList;
- decode Array Of Obj CType: count: at:
Decodes an array of count
items, whose Objective-C type is given by item
.
- decode Bool For Key:
Decodes and returns a boolean value that was previously encoded with encode
and associated with the string key
.
- decode Bytes For Key: returned Length:
Decodes a buffer of data that was previously encoded with encode
and associated with the string key
.
- decode Bytes With Returned Length:
Decodes a buffer of data whose types are unspecified.
- decode Data Object
Decodes and returns an NSData
object that was previously encoded with encode
. Subclasses must override this method.
- decode Double For Key:
Decodes and returns a double value that was previously encoded with either encode
or encode
and associated with the string key
.
- decode Float For Key:
Decodes and returns a float value that was previously encoded with encode
or encode
and associated with the string key
.
- decode Int For Key:
Decodes and returns an int value that was previously encoded with encode
, encode
, encode
, or encode
and associated with the string key
.
- decode Integer For Key:
Decodes and returns an NSInteger value that was previously encoded with encode
, encode
, encode
, or encode
and associated with the string key
.
- decode Int32For Key:
Decodes and returns a 32-bit integer value that was previously encoded with encode
, encode
, encode
, or encode
and associated with the string key
.
- decode Int64For Key:
Decodes and returns a 64-bit integer value that was previously encoded with encode
, encode
, encode
, or encode
and associated with the string key
.
- decode Object
Decodes and returns an object that was previously encoded with any of the encode…Object
methods.
- decode Object For Key:
Decodes and returns a previously-encoded object that was previously encoded with encode
or encode
and associated with the string key
.
- decode Point
Decodes and returns an NSPoint structure that was previously encoded with encode
.
- decode Point For Key:
Decodes and returns an NSPoint structure that was previously encoded with encode
.
- decode Rect
Decodes and returns an NSRect structure that was previously encoded with encode
.
- decode Rect For Key:
Decodes and returns an NSRect structure that was previously encoded with encode
.
- decode Size
Decodes and returns an NSSize structure that was previously encoded with encode
.
- decode Size For Key:
Decodes and returns an NSSize structure that was previously encoded with encode
.
- decode Value Of Obj CType: at:
Decodes a single value, whose Objective-C type is given by value
.
- decode Value Of Obj CType: at: size:
Decodes a single value of a known type from the specified data buffer.
- decode Values Of Obj CTypes:
Decodes a series of potentially different Objective-C types.
- decode Object Of Class: for Key:
Decodes an object for the key, restricted to the specified class.
- decode Object Of Classes: for Key:
Decodes an object for the key, restricted to the specified classes.
- decode Property List For Key:
Returns a decoded property list for the specified key.