Initializer

init(string:)

Returns an NSString object initialized by copying the characters from another given string. NSStringオブジェクトを返します、別の与えられた文字列から文字をコピーすることによって初期化されます。

Declaration 宣言

convenience init(string aString: String)

Parameters パラメータ

aString

The string from which to copy characters. This value must not be nil. それから文字をコピーすることになる文字列。この値は、nilではいけません。

Return Value 戻り値

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

See Also 参照

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

Related Documentation 関連文書