# `GSLayer ignoreUpdates`

*Instance Method*

Suppresses update tracking for current and subsequent changes.

## Declaration

```swift
func ignoreUpdates()
```

```objc
- (void) ignoreUpdates;
```

```python
ignoreUpdates()
```

## Discussion

Call [`GSLayer enableFutureUpdates`](/Core/GlyphsCore/GSLayer/enableFutureUpdates) before using the layer with normal update behavior.

## See Also

### Update Control

- [`GSLayer.disableUpdates`](/Core/GlyphsCore/GSLayer/disableUpdates) — Whether updates and change notifications are deferred.
- [`GSLayer isIgnoringUpdates`](/Core/GlyphsCore/GSLayer/isIgnoringUpdates) — Whether update tracking is suppressed.
- [`GSLayer stopUpdates`](/Core/GlyphsCore/GSLayer/stopUpdates) — Defers updates and change notifications.
- [`GSLayer startUpdates`](/Core/GlyphsCore/GSLayer/startUpdates) — Processes deferred updates and sends combined change notifications.
- [`GSLayer enableFutureUpdates`](/Core/GlyphsCore/GSLayer/enableFutureUpdates) — Resumes updates without reporting changes made while updates were disabled or ignored.

