Overview 概要
Key-value observing is a Cocoa programming pattern you use to notify objects about changes to properties of other objects. It's useful for communicating changes between logically separated parts of your app—such as between models and views. You can only use key-value observing with classes that inherit from NSObject
.
キー値監視は、他のオブジェクトのプロパティに対する変更を通知するためにあなたが使うCocoaプログラミングパターンです。それは、あなたのアプリの論理的に分離された部分の間で変更を伝えるために役立ちます — 例えばモデルとビューの間など。あなたはキー値監視を、NSObject
から継承するクラスでのみ使うことができます。
Annotate a Property for Key-Value Observing キー値監視のためのプロパティに注釈をつける
Mark properties that you want to observe through key-value observing with both the @objc
attribute and the dynamic
modifier. The example below defines the My
class with a property—my
—that can be observed:
あなたがキー値監視を通して監視したいプロパティを@objc
属性とdynamic
修飾子の両方で印してください。下の例は、My
クラスを、監視されることが可能なプロパティ — my
— で定義します:
Define an Observer オブザーバを定義する
An instance of an observer class manages information about changes made to one or more properties. When you create an observer, you start observation by calling the observe(_:
method with a key path that refers to the property you want to observe.
オブザーバクラスのあるインスタンスは、ひとつ以上のプロパティに対してなされる変更についての情報を管理します。あなたがオブザーバを作成する場合、あなたはobserve(_:
メソッドを、あなたが監視したいプロパティを参照するキーパスとともに呼び出すことによって監視を開始します。
In the example below, the \.object
key path refers to the my
property of My
:
下の例において、\.object
キーパスは、My
のmy
プロパティを参照します:
You use the old
and new
properties of the NSKey
instance to see what's changed about the property you're observing.
あなたは、NSKey
インスタンスのold
とnew
プロパティを使って、あなたが監視しているプロパティについて変更されるのが何か見ます。
If you don't need to know how a property has changed, omit the options
parameter. Omitting the options
parameter forgoes storing the new and old property values, which causes the old
and new
properties to be nil
.
あなたがどのようにプロパティが変更されたか知る必要がないならば、options
パラメータを省略します。options
パラメータを省略することは、新しいそして古いプロパティ値を格納することをやめます、それはold
とnew
プロパティがnil
になる原因となります。
Associate the Observer with the Property to Observe 監視するプロパティとオブザーバを結びつける
You associate the property you want to observe with its observer by passing the object to the initializer of the observer: あなたは、あなたが監視を望むプロパティをそれのオブザーバと、オブジェクトをオブザーバのイニシャライザを渡すことによって結びつけます:
Respond to a Property Change プロパティの変更に応答する
Objects that are set up to use key-value observing—such as observed
above—notify their observers about property changes. The example below changes the my
property by calling the update
method. That method call automatically triggers the observer's change handler:
キー値監視を使うように設定されるそれらオブジェクト — 例えば上のobserved
— は、それらのオブザーバにプロパティの変化について通知します。下の例は、my
プロパティを、update
メソッドを呼び出すことによって変更します。そのメソッド呼び出しは、自動的にオブザーバの持つ変更ハンドラを誘発します:
The example above responds to the property change by printing both the new and old values of the date. 上の例は、プロパティの変化に、日付の新旧の値の両方をプリントすることによって応答します。