StructureNSData
NSData.Base64EncodingOptions
Options for methods used to Base64 encode data.
データをBase64エンコードするために使用されるメソッドのオプション。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.1+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
struct Base64EncodingOptions, @unchecked Sendable
Topics 話題
Initializers イニシャライザ
Constants 定数
static var lineLength64Characters : NSData.Base64EncodingOptions
Set the maximum line length to 64 characters, after which a line ending is inserted.
最大行幅を64文字に設定します、それの後に行終始が挿入されます。
static var lineLength76Characters : NSData.Base64EncodingOptions
Set the maximum line length to 76 characters, after which a line ending is inserted.
最大行幅を76文字に設定します、それの後に行終始が挿入されます。
static var endLineWithCarriageReturn : NSData.Base64EncodingOptions
When a maximum line length is set, specify that the line ending to insert should include a carriage return.
最大行幅が設定される場合、挿入する行終始はキャリッジリターンを含むべきであることを指定します。
static var endLineWithLineFeed : NSData.Base64EncodingOptions
When a maximum line length is set, specify that the line ending to insert should include a line feed.
最大行幅が設定される場合、挿入する行終始はラインフィードを含むべきであることを指定します。
See Also 参照
Encoding and Decoding Base64 Representations Base64表現の符号化と復号
init?(base64Encoded: Data, options: NSData.Base64DecodingOptions)
Initializes a data object with the given Base64 encoded data.
あるデータオブジェクトをある与えられたBase64符号化されたデータで初期化します。
init?(base64Encoding: String)
Initializes a data object initialized with the given Base64 encoded string.
ある与えられたBase64符号化された文字列で初期化されるデータオブジェクトを初期化します。
init?(base64Encoded: String, options: NSData.Base64DecodingOptions)
Initializes a data object with the given Base64 encoded string.
あるデータオブジェクトをこの与えられたBase64符号化された文字列で初期化します。
func base64EncodedData (options: NSData.Base64EncodingOptions) -> Data
Creates a Base64, UTF-8 encoded data object from the string using the given options.
あるBase64、UTF-8符号化されたデータオブジェクトをこの文字列からこの与えられたオプションを使って作成します。
func base64EncodedString (options: NSData.Base64EncodingOptions) -> String
Creates a Base64 encoded string from the string using the given options.
あるBase64符号化された文字列をこの文字列からこの与えられたオプションを使って作成します。
func base64Encoding() -> String
Initializes a Base64 encoded string from the string.
あるBase64符号化された文字列をこの文字列から初期化します。
struct NSData.Base64DecodingOptions
Options to modify the decoding algorithm used to decode Base64 encoded data.
Base64エンコードされたデータをデコードするために使われるデコードアルゴリズムを修正するオプション。