Contents

base64EncodedData(options:)

Creates a Base64, UTF-8 encoded data object from the string using the given options.

Declaration

func base64EncodedData(options: NSData.Base64EncodingOptions = []) -> Data

Parameters

  • options:

    A mask that specifies options for Base64 encoding the data. Possible values are given in Base64encodingoptions.

Return Value

A Base64, UTF-8 encoded data object.

Discussion

By default, no line endings are inserted.

If you specify one of the line length options (lineLength64Characters or lineLength76Characters) but don’t specify the kind of line ending to insert, the default line ending is Carriage Return + Line Feed.

See Also

Encoding and Decoding Base64 Representations