Instance Property
インスタンスプロパティ
characters
The characters of the attributed string, as a view into the underlying string.
属性付き文字列の文字それら、基礎をなす文字列へのあるビューとして。
Required.
必須。
Discussion
議論
Use the characters
view when you want to look for specific string content. You can then use the resulting ranges to set attributes for specific parts of the AttributedString
or AttributedSubstring
.
characters
ビューを、あなたが特定の文字列内容を探したい時に使ってください。あなたは、それからその結果の範囲を使うことで属性をAttributedString
またはAttributedSubstring
の特定の部分に対して設定できます。
You can also use this property to mutate the attributed string, using RangeReplaceableCollection
methods, such as insert(_:at:)
and append(_:)
. Inserted characters inherit any attributes present at the insertion point.
あなたはまた、このプロパティを使って属性付き文字列を変化させることができます、RangeReplaceableCollection
メソッド、例えばinsert(_:at:)
およびappend(_:)
などを使って。挿入された文字は、挿入ポイントで存在するあらゆる属性を継承します。
See Also
参照
Accessing Views into the Attributed String
属性付き文字列へのビューそれらにアクセスする
var runs: AttributedString.Runs
The attributed runs of the attributed string, as a view into the underlying string.
属性付き文字列の属性付きrunそれら、基礎をなす文字列へのあるビューとして。
Required.
必須。