Instance Method
propertyListValue(format:)propertyListValueFormat:error: propertyListValueFormat_error_
The content of the object serialized as a dictionary.
Declaration
func propertyListValue(format: GSFormatVersion) throws -> [String : Any]Declaration
- (NSDictionary<NSString *,id> *) propertyListValueFormat:(GSFormatVersion) format error:(NSError **) error;Declaration
propertyListValueFormat_error_(format: GSFormatVersion) -> tuple[dict[str, object], NSError]Parameters
formatThe version
Parameters
formatThe version
errorOn output, a pointer to an error object that describes why the method failed, or
nilif no error occurred. If you are not interested in the error information, passnilfor this parameter.
Return Value
A dict
Discussion
The dict has a format like this:
{ bottomValue = 40; name = Width; topValue = 100; }
Return Value
A dict. On failure, this method returns nil.
Discussion
The dict has a format like this:
{ bottomValue = 40; name = Width; topValue = 100; }