---
title: "addObserver(_:forKeyPath:options:context:)"
framework: foundation
role: symbol
role_heading: Instance Method
path: "foundation/nsarray/addobserver(_:forkeypath:options:context:)"
---

# addObserver(_:forKeyPath:options:context:)

Raises an exception.

## Declaration

```swift
func addObserver(_ observer: NSObject, forKeyPath keyPath: String, options: NSKeyValueObservingOptions = [], context: UnsafeMutableRawPointer?)
```

## Parameters

- `observer`: The object to register for KVO notifications. The observer must implement the key-value observing method doc://com.apple.documentation/documentation/ObjectiveC/NSObject-swift.class/observeValue(forKeyPath:of:change:context:).
- `keyPath`: The key path, relative to the array, of the property to observe. This value must not be nil.
- `options`: A combination of doc://com.apple.foundation/documentation/Foundation/NSKeyValueObservingOptions values that specifies what is included in observation notifications.
- `context`: Arbitrary data that is passed to observer in doc://com.apple.documentation/documentation/ObjectiveC/NSObject-swift.class/observeValue(forKeyPath:of:change:context:).

## Discussion

Discussion NSArray objects are not observable, so this method raises an exception when invoked on an NSArray object. Instead of observing an array, observe the to-many relationship for which the array is the collection of related objects.

## See Also

### Key-Value Observing

- [removeObserver(_:forKeyPath:)](foundation/nsarray/removeobserver(_:forkeypath:).md)
- [removeObserver(_:forKeyPath:context:)](foundation/nsarray/removeobserver(_:forkeypath:context:).md)
- [removeObserver(_:fromObjectsAt:forKeyPath:context:)](foundation/nsarray/removeobserver(_:fromobjectsat:forkeypath:context:).md)
- [addObserver(_:toObjectsAt:forKeyPath:options:context:)](foundation/nsarray/addobserver(_:toobjectsat:forkeypath:options:context:).md)
- [removeObserver(_:fromObjectsAt:forKeyPath:)](foundation/nsarray/removeobserver(_:fromobjectsat:forkeypath:).md)
