---
title: "sendSubviewToBack(_:)"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uiview/sendsubviewtoback(_:)"
---

# sendSubviewToBack(_:)

Moves the specified subview so that it appears behind its siblings.

## Declaration

```swift
func sendSubviewToBack(_ view: UIView)
```

## Parameters

- `view`: The subview to move to the back.

## Discussion

Discussion This method moves the specified view to the beginning of the array of views in the subviews property.

## See Also

### Managing the view hierarchy

- [superview](uikit/uiview/superview.md)
- [subviews](uikit/uiview/subviews.md)
- [window](uikit/uiview/window.md)
- [addSubview(_:)](uikit/uiview/addsubview(_:).md)
- [bringSubviewToFront(_:)](uikit/uiview/bringsubviewtofront(_:).md)
- [removeFromSuperview()](uikit/uiview/removefromsuperview().md)
- [insertSubview(_:at:)](uikit/uiview/insertsubview(_:at:).md)
- [insertSubview(_:aboveSubview:)](uikit/uiview/insertsubview(_:abovesubview:).md)
- [insertSubview(_:belowSubview:)](uikit/uiview/insertsubview(_:belowsubview:).md)
- [exchangeSubview(at:withSubviewAt:)](uikit/uiview/exchangesubview(at:withsubviewat:).md)
- [isDescendant(of:)](uikit/uiview/isdescendant(of:).md)
