Generic Subscript

subscript(dynamicMember:)

Returns a modified attribute container as part of building a chain of attributes. ある修正された属性コンテナを属性いくつかからなるある連鎖を構築することの一部として返します。

Declaration 宣言

subscript<K>(dynamicMember keyPath: KeyPath<AttributeDynamicLookup, K>) -> AttributeContainer.Builder<K> where K : AttributedStringKey { get }

Discussion 議論

This method returns an AttributeContainer.Builder, which allows you to chain multiple attributes in a single call, like this: このメソッドはAttributeContainer.Builderを返します、それはあなたに複数の属性を単一の呼び出しの中に連鎖状にさせます、このように:


// An attribute container with the link and backgroundColor attributes.( ある属性コンテナ、リンクおよび背景色の属性を備えます。
let myContainer = AttributeContainer().link(myURL).backgroundColor(.yellow)

See Also 参照

Accessing Attributes 属性にアクセスする