Instance Method インスタンスメソッド

removeAttribute(_:range:)

Removes the named attribute from the characters in the specified range. 指定された範囲の中の文字から指名された属性を取り除きます。

Declaration 宣言

func removeAttribute(_ name: NSAttributedString.Key, 
               range: NSRange)

Parameters パラメータ

name

A string specifying the attribute name to remove. Attribute keys can be supplied by another framework or can be custom ones you define. For information about where to find the system-supplied attribute keys, see the overview section in NSAttributedString. 取り除くことになる属性名を指定する文字列。属性キーは、別のフレームワークによって提供されることが可能です、またはあなたが定義するあつらえのものであることが可能です。システム提供の属性キーを見つける場所についての情報として、NSAttributedStringを見てください。

aRange

The range of characters from which the specified attribute is removed. それからこの指定された属性が取り除かれる文字の範囲。

Discussion 議論

Raises an rangeException if any part of aRange lies beyond the end of the receiver’s characters. rangeExceptionを引き起こします、もしaRangeの何らかの部分がレシーバの持つ文字の終わりを越えているならば。

See Also 参照

Changing Attributes