CFPropertyListCreateFromXMLData(_:_:_:_:)
Creates a property list using the specified XML or binary property list data.
Declaration
func CFPropertyListCreateFromXMLData(_ allocator: CFAllocator!, _ xmlData: CFData!, _ mutabilityOption: CFOptionFlags, _ errorString: UnsafeMutablePointer<Unmanaged<CFString>?>!) -> Unmanaged<CFPropertyList>!Parameters
- allocator:
The allocator to use to allocate memory for the new property list. Pass
NULLor kCFAllocatorDefault to use the current default allocator. - xmlData:
The raw bytes to convert into a property list. The bytes may be the content of an XML file or of a binary property list (see Cfpropertylistformat).
- mutabilityOption:
A constant that specifies the degree of mutability for the returned property list. See Property_list_mutability_options for descriptions of possible values.
- errorString:
On return,
NULLif the conversion is successful, otherwise a string that describes the nature of the error. Error messages are not localized, but may be in the future, so they are not currently suitable for comparison.Pass
NULLif you do not wish to receive an error string. Ownership follows the 20001148 103029.
Return Value
A new property list if the conversion is successful, otherwise NULL. Ownership follows the The Create Rule.