[This is preliminary documentation and is subject to change.]

If a given property doesn't support auto-KVO, this MUST be called after changing a value for the property to be KVO-compliant.

Namespace:  KNKVC
Assembly:  KNKVC (in KNKVC.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static void didChangeValueForKey(
	this Object o,
	string key
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Sub didChangeValueForKey ( _
	o As Object, _
	key As String _
)
Visual C++
[ExtensionAttribute]
public:
static void didChangeValueForKey(
	Object^ o, 
	String^ key
)

Parameters

o
Type: System..::.Object
The object that changed its key.
key
Type: System..::.String
The key that changed.

See Also