Generic Instance Method 総称体インスタンスメソッド

transformingAttributes(_:_:)

Returns an attributed string by calling a closure that transforms one attribute of a source attributed string. 属性付き文字列をあるクロージャを呼び出すことによって返します、それは元の属性付き文字列の1つの属性を変換するものです。

Declaration 宣言

func transformingAttributes<K>(_ k: K.Type, _ c: (inout AttributedString.SingleAttributeTransformer<K>) -> Void) -> AttributedString where K : AttributedStringKey

Parameters パラメータ

k

The AttributedStringKey that identifies the attribute to transform. 変換する属性を識別するAttributedStringKey

c

The closure that receives an AttributedString.SingleAttributeTransformer that you use to access and alter the attribute’s range and value. AttributedString.SingleAttributeTransformerを受け取るクロージャ、それはあなたが属性のもつ範囲と値にアクセスおよび改めるために使います。

Return Value 戻り値

An attributed string with the applied transformation to the specified attribute. 指定された属性に変換を適用した状態のある属性付き文字列。

See Also 参照

Transforming Attributes 属性を変換する