Class

NSMutableCharacterSet

An object representing a mutable set of Unicode character values that bridges to CharacterSet; use NSMutableCharacterSet when you need reference semantics or other Foundation-specific behavior. ユニコード文字値の可変集合を表しているオブジェクト、それはCharacterSetにブリッジします;NSMutableCharacterSetをあなたが参照意味論または他のFoundation特有の挙動を必要とする場合に使ってください。

Declaration 宣言

class NSMutableCharacterSet : NSCharacterSet

Overview 概要

The NSMutableCharacterSet class declares the programmatic interface to objects that manage a modifiable set of Unicode characters. You can add or remove characters from a mutable character set as numeric values in NSRange structures or as character values in strings, combine character sets by union or intersection, and invert a character set. NSMutableCharacterSetクラスは、変更可能なユニコード文字集合を管理するオブジェクトに対するプログラムインターフェイスを宣言します。あなたは、いくらかの文字をある可変文字集合に追加または除去することがNSRange構造体において数値としてまたは文字列において文字値として、文字集合それらを組み合わせることが和集合や共通集合によって、そしてある文字集合を逆にすることが可能です。

Mutable character sets are less efficient to use than immutable character sets. If you don’t need to change a character set after creating it, create an immutable copy with copy and use that. 可変文字集合は、不変文字集合より使うには効率的ではありません。あなたがある文字集合をそれの作成後に変える必要がないならば、不変のコピーをcopyで作成してそれを使ってください。

NSMutableCharacterSet defines no primitive methods. Subclasses must implement all methods declared by this class in addition to the primitives of NSCharacterSet. They must also implement mutableCopy(with:). NSMutableCharacterSetは、根本的メソッドを定義しません。サブクラスそれらは、このクラスによって宣言される全てのメソッドを、NSCharacterSetの根本的なものに加えて実装しなければなりません。それらはまた、mutableCopy(with:)を実装しなければなりません。

NSMutableCharacterSet is “toll-free bridged” with its Core Foundation counterpart, CFMutableCharacterSet. See Toll-Free Bridging for more information. NSMutableCharacterSetは、それのCore Foundation相当物、CFMutableCharacterSetと「トールフリーブリッジ」されます。Toll-Free Bridgingをさらなる情報として見てください。

Topics 話題

Getting Standard Character Sets 標準文字集合を取得する

Creating Custom Character Sets あつらえの文字集合を作成する

Adding and Removing Characters 文字の追加と除去

Combining Character Sets 文字集合を結合する

Inverting a Character Set ある文字集合を逆にする

Relationships 関係

Inherits From 継承元

Conforms To 次に準拠

See Also 参照

Using Reference Types 参照型を使用する