Initializer

init(verbatim:)

Creates a text view that displays a string literal without localization. あるテキストビューを作成します、それは、ある文字列リテラルをローカライゼーションなしに表示するものです。

Declaration 宣言

init(verbatim content: String)

Parameters パラメータ

content

A string to display without localization. ローカライゼーションなしで表示する文字列。

Discussion 議論

Use this initializer to create a text view with a string literal without performing localization: このイニシャライザを使って、ローカライゼーションを実行することなしでの文字列リテラルをもつテキストビューを作成してください:


Text(verbatim: "pencil") // Displays the string "pencil" in any locale.

If you want to localize a string literal before displaying it, use the init(_:tableName:bundle:comment:) initializer instead. If you want to display a string variable, use the init(_:) initializer, which also bypasses localization.

See Also 参照

Creating a Text View from a String