1

UITextViewに書きたいテキストに続いて、どうすればUITextViewに書き込めますか

Provides freeze protection to -45°F to ensure a clean, clear windshield

    >Concentrated formula
    >Provides freeze protection to -45°F
    >Removes road film and bug splatter
    >Use year-round
    >Choose the freeze protection you need
    >Contains a special bittering agent
    >Harmless to car finishes when used as directed

UITextView にも同様の構造が必要です。出来ますか?

4

4 に答える 4

2

次を使用して、任意のテキストを設定できます。

yourTextView.text = @"YOUR TEXT HERE";

したがって、表示したものと同じ構造にしたい場合は、次のようにします。

yourTextView.text = @"Provides freeze protection to -45°F to ensure a clean, clear windshield\n\n >Concentrated formula\n >Provides freeze protection to -45°F\n >Removes road film and bug splatter\n >Use year-round\n >Choose the freeze protection you need\n >Contains a special bittering agent\n >Harmless to car finishes when used as directed";
于 2012-10-18T08:36:17.113 に答える
2

要件のように文字列をフォーマットするだけです。

yourTextView.text = [NSString stringWithFormat:@" Provides freeze protection to -45°F to ensure a clean, clear windshield\n    >Concentrated formula\n    >Provides freeze protection to -45°F\n    >Removes road film and bug splatter\n    >Use year-round\n    >Choose the freeze protection you need\n    >Contains a special bittering agent\n    >Harmless to car finishes when used as directed"];
于 2012-10-18T08:36:35.320 に答える
2

これはプログラムで行うことができます。

textView.text = @"Type your text here"...

\n を改行に、\t をタブ バー スペースに使用できます。

これを試して

于 2012-10-18T10:08:07.360 に答える
0

'\n'テキストビューテキスト内の新しい行の開始と'\t' (Escape sequences)タブ付きスペースに使用します。

于 2012-10-18T08:49:41.310 に答える