- enumerateAttribute:inRange:options:usingBlock:
The range over which the attributes are enumerated. それに対して属性が列挙されるその範囲。
Availability 有効性
Technology
- (void)enumerateAttributesInRange:(NSRange
)enumerationRange
options:(NSAttributedStringEnumerationOptions
)opts
usingBlock:(void (^)(NSDictionary
<NSAttributedStringKey
, id
> *attrs, NSRange
range, BOOL *stop))block;
enumerationRange
The range over which the attributes are enumerated. それに対して属性が列挙されるその範囲。
opts
The options used by the enumeration. For possible values, see NSAttributed
.
列挙によって使われるオプション。可能な値として、NSAttributed
を見てください。
block
The block to apply to ranges of attributes in the attributed string. 属性付文字列の中の属性の範囲それらに適用されるブロック。
The block takes three arguments: ブロックは、次の3つの引数をとります:
A dictionary of attribute values keyed by name. 名前によってキー付けされる属性値からなる辞書。
The range of the attribute values in the attributed string. 属性付文字列の中の属性値の範囲。
A reference to a Boolean value. The block can set the value to YES
within the block to stop further processing of the attributed string.
あるブール値への参照。ブロックは、値をYES
にそのブロック内部で設定することで、それ以上の属性付き文字列の処理を止めることができます。
If this method is called by an instance of NSMutable
, mutation (deletion, addition, or change) is allowed only if the mutation is within the range provided to the block. After a mutation, the enumeration continues with the range immediately following the processed range, adjusting for any change in length caused by the mutation. For example, if block
is called with a range starting at location N
, and the block deletes all the characters in the provided range, the next call will also pass N
as the location of the range.
このメソッドがNSMutable
のインスタンスによって呼び出されるならば、変化(削除、追加、または変更)は、その変化がブロックに提供される範囲内である場合にのみ許可されます。ある変化の後、列挙は処理された範囲にすぐに続く範囲で継続します、変化によってもたらされる長さでの如何なる変更も調整します。例えば、block
が位置N
で始まる範囲で呼び出される、そしてブロックは全ての文字を提供された範囲において削除するならば、次の呼び出しはまたN
を範囲の位置として渡されるでしょう。
- enumerateAttribute:inRange:options:usingBlock: