---
title: additionalSafeAreaInsets
framework: uikit
role: symbol
role_heading: Instance Property
path: uikit/uiviewcontroller/additionalsafeareainsets
---

# additionalSafeAreaInsets

Custom insets that you specify to modify the view controller’s safe area.

## Declaration

```swift
var additionalSafeAreaInsets: UIEdgeInsets { get set }
```

## Mentioned in

Creating a custom container view controller Positioning content relative to the safe area

## Discussion

Discussion Use this property to adjust the safe area insets of this view controller’s views by the specified amount. The safe area defines the portion of your view controller’s visible area that is guaranteed to be unobscured by the system status bar or by an ancestor-provided view such as the navigation bar. You might use this property to extend the safe area to include custom content in your interface. For example, a drawing app might use this property to avoid displaying content underneath tool palettes.

## See Also

### Extending the view’s safe area

- [Positioning content relative to the safe area](uikit/positioning-content-relative-to-the-safe-area.md)
- [viewSafeAreaInsetsDidChange()](uikit/uiviewcontroller/viewsafeareainsetsdidchange().md)
