CFURLCreateAbsoluteURLWithBytes(_:_:_:_:_:_:)
Creates a new CFURL object by resolving the relative portion of a URL, specified as bytes, against its given base URL.
Declaration
func CFURLCreateAbsoluteURLWithBytes(_ alloc: CFAllocator!, _ relativeURLBytes: UnsafePointer<UInt8>!, _ length: CFIndex, _ encoding: CFStringEncoding, _ baseURL: CFURL!, _ useCompatibilityMode: Bool) -> CFURL!Parameters
- alloc:
The allocator to use to allocate memory for the new
CFURLobject. PassNULLor Kcfallocatordefault to use the current default allocator. - relativeURLBytes:
The character bytes that represent a relative URL to convert into a
CFURLobject. - length:
The number of bytes in
relativeURLBytes. - encoding:
The string encoding of the
relativeURLBytesstring. This encoding is also used to interpret percent escape sequences. - baseURL:
The URL to which
relativeURLBytesis relative. - useCompatibilityMode:
If
true, the rules historically used on the web are used to resolve the string specified by therelativeURLBytesparameter againstbaseURL. These rules are generally listed in the RFC as optional or alternate interpretations. Otherwise, the strict rules from the RFC are used.
Return Value
A new CFURL object, or NULL if relativeURLBytes cannot be made absolute. Ownership follows the create rule. See The Create Rule.
Discussion
This function interprets the provided bytes using the specified string encoding to create the relative portion of the URL’s address.
See Also
Creating a CFURL
CFURLCopyAbsoluteURL(_:)CFURLCreateByResolvingBookmarkData(_:_:_:_:_:_:_:)CFURLCreateCopyAppendingPathComponent(_:_:_:_:)CFURLCreateCopyAppendingPathExtension(_:_:_:)CFURLCreateCopyDeletingLastPathComponent(_:_:)CFURLCreateCopyDeletingPathExtension(_:_:)CFURLCreateFilePathURL(_:_:_:)CFURLCreateFileReferenceURL(_:_:_:)CFURLCreateFromFileSystemRepresentation(_:_:_:_:)CFURLCreateFromFileSystemRepresentationRelativeToBase(_:_:_:_:_:)CFURLCreateFromFSRef(_:_:)CFURLCreateWithBytes(_:_:_:_:_:)CFURLCreateWithFileSystemPath(_:_:_:_:)CFURLCreateWithFileSystemPathRelativeToBase(_:_:_:_:_:)CFURLCreateWithString(_:_:_:)