NSStringTransform
Constants representing an ICU string transform.
ICU文字列変形を表している定数。
Availability 有効性
Technology
- (NSString
*)stringByApplyingTransform:(NSStringTransform
)transform
reverse:(BOOL)reverse;
You can use this method to, for example, transliterate text from one script to another, strip diacritics or combining marks, and get the unicode names of characters. あなたはこのメソッドを使って、例えば、テキストをある書体から別のものへと翻字する、区別的発音符または結合記号を剥ぎ取る、そして文字のユニコード名を取得することができます。
Note 注意
The constants defined by the NSString
type offer a subset of the functionality provided by the underlying ICU transform functionality.
NSString
型によって定義される定数は、基礎をなすICU変換機能によって提供される機能の部分集合を提示します。
To apply an ICU transform defined in the ICU User Guide that doesn't have a corresponding NSString
constant, create an instance of NSMutable
and call the apply
method instead.
.
NSStringTransform
- applyTransform:reverse:range:updatedRange: