mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
17 lines
286 B
Swift
17 lines
286 B
Swift
//
|
|
// UIStackView+Ext.swift
|
|
// Lockdown
|
|
//
|
|
// Created by Alexander Parshakov on 12/5/22
|
|
// Copyright © 2022 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIStackView {
|
|
|
|
func clear() {
|
|
arrangedSubviews.forEach { $0.removeFromSuperview() }
|
|
}
|
|
}
|