Initializer

init(utf8String:)

Returns an NSString object initialized by copying the characters from a given C array of UTF8-encoded bytes. NSStringオブジェクトを返します、UTF8符号化されたバイトからなる与えられたC配列から文字をコピーすることによって初期化されます。

Declaration 宣言

convenience init?(utf8String nullTerminatedCString: UnsafePointer<CChar>)

Parameters パラメータ

nullTerminatedCString

A NULL-terminated C array of bytes in UTF-8 encoding. This value must not be NULL. UTF-8符号化でのバイトからなるNULL終端されたC配列。この値は、NULLであってはいけません。

Return Value 戻り値

An NSString object initialized by copying the bytes from nullTerminatedCString. The returned object may be different from the original receiver. あるNSStringオブジェクト、初期化をnullTerminatedCStringからバイトをコピーすることでされます。返されるオブジェクトは、元のレシーバと異なるかもしれません。

See Also 参照

Creating and Initializing Strings 文字列の作成と初期化

Related Documentation 関連文書