Instance Method インスタンスメソッド

base64EncodedDataWithOptions:

Creates a Base64, UTF-8 encoded data object from the string using the given options. あるBase64、UTF-8符号化されたデータオブジェクトをこの文字列からこの与えられたオプションを使って作成します。

Declaration 宣言

- (NSData *)base64EncodedDataWithOptions:(NSDataBase64EncodingOptions)options;

Parameters パラメータ

options オプション

A mask that specifies options for Base64 encoding the data. Possible values are given in NSDataBase64EncodingOptions. データのBase64符号化に対して指定するマスク。可能な値は、NSDataBase64EncodingOptionsにおいて与えられます。

Return Value 戻り値

A Base64, UTF-8 encoded data object. Base64、UTF-8符号化されたデータオブジェクト。

Discussion 議論

By default, no line endings are inserted. 初期状態では、行終始は挿入されません。

If you specify one of the line length options (NSDataBase64Encoding64CharacterLineLength or NSDataBase64Encoding76CharacterLineLength) but don’t specify the kind of line ending to insert, the default line ending is Carriage Return + Line Feed. あなたが行長オプション(NSDataBase64Encoding64CharacterLineLengthまたはNSDataBase64Encoding76CharacterLineLength)の1つを指定する、しかし挿入する行終始の種類を指定しないならば、省略時の行終始はキャリッジリターン + ラインフィードです。

See Also 参照

Encoding and Decoding Base64 Representations Base64表現の符号化と復号