func toggleView()

in Broadcasting/Views/Components/RPSystemBroadcastPicker.swift [25:31]


    func toggleView() {
        for subview in broadcastPickerView.subviews {
            if let button = subview as? UIButton {
                button.sendActions(for: UIControl.Event.touchUpInside)
            }
        }
    }