---
title: RPSystemBroadcastPickerView
framework: replaykit
role: symbol
role_heading: Class
path: replaykit/rpsystembroadcastpickerview
---

# RPSystemBroadcastPickerView

A view displaying a broadcast button that, when tapped, shows a broadcast picker.

## Declaration

```swift
class RPSystemBroadcastPickerView
```

## Overview

Overview Add this view to your view hierarchy to let users broadcast directly from your app. When a user taps the broadcast button, it displays a broadcast picker, allowing the user to select a broadcast provider. note: Clicking the broadcast button has no effect in Mac apps built with Mac Catalyst. You can limit the picker to a particular broadcast provider by setting preferredExtension to the bundle identifier of a broadcast extension. You can also show or hide the microphone button displayed in the picker by setting the showsMicrophoneButton property. Set these properties before presenting RPSystemBroadcastPickerView, as shown here: class ViewController: UIViewController {

@IBOutlet var containerView: UIView!          override func viewDidLoad() {         super.viewDidLoad()               let broadcastPicker = RPSystemBroadcastPickerView(frame: CGRect(x: 0, y: 0, width: 50, height: 50))         broadcastPicker.preferredExtension = "com.your-app.broadcast.extension"

containerView.addSubview(broadcastPicker)     }      }

## Topics

### Configuring the Broadcast Picker

- [preferredExtension](replaykit/rpsystembroadcastpickerview/preferredextension.md)
- [showsMicrophoneButton](replaykit/rpsystembroadcastpickerview/showsmicrophonebutton.md)

## Relationships

### Inherits From

- [UIView](uikit/uiview.md)

### Conforms To

- [CALayerDelegate](quartzcore/calayerdelegate.md)
- [CLBodyIdentifiable](corelocation/clbodyidentifiable.md)
- [CMBodyIdentifiable](coremotion/cmbodyidentifiable.md)
- [CVarArg](swift/cvararg.md)
- [CustomDebugStringConvertible](swift/customdebugstringconvertible.md)
- [CustomStringConvertible](swift/customstringconvertible.md)
- [Equatable](swift/equatable.md)
- [Hashable](swift/hashable.md)
- [NSCoding](foundation/nscoding.md)
- [NSObjectProtocol](objectivec/nsobjectprotocol.md)
- [NSTouchBarProvider](appkit/nstouchbarprovider.md)
- [Sendable](swift/sendable.md)
- [SendableMetatype](swift/sendablemetatype.md)
- [UIAccessibilityIdentification](uikit/uiaccessibilityidentification.md)
- [UIActivityItemsConfigurationProviding](uikit/uiactivityitemsconfigurationproviding.md)
- [UIAppearance](uikit/uiappearance.md)
- [UIAppearanceContainer](uikit/uiappearancecontainer.md)
- [UICoordinateSpace](uikit/uicoordinatespace.md)
- [UIDynamicItem](uikit/uidynamicitem.md)
- [UIFocusEnvironment](uikit/uifocusenvironment.md)
- [UIFocusItem](uikit/uifocusitem.md)
- [UIFocusItemContainer](uikit/uifocusitemcontainer.md)
- [UILargeContentViewerItem](uikit/uilargecontentvieweritem.md)
- [UIPasteConfigurationSupporting](uikit/uipasteconfigurationsupporting.md)
- [UIPopoverPresentationControllerSourceItem](uikit/uipopoverpresentationcontrollersourceitem.md)
- [UIResponderStandardEditActions](uikit/uiresponderstandardeditactions.md)
- [UITraitChangeObservable](uikit/uitraitchangeobservable-67e94.md)
- [UITraitEnvironment](uikit/uitraitenvironment.md)
- [UIUserActivityRestoring](uikit/uiuseractivityrestoring.md)

## See Also

### Live Broadcast Implementation

- [RPBroadcastActivityViewController](replaykit/rpbroadcastactivityviewcontroller.md)
- [RPBroadcastActivityController](replaykit/rpbroadcastactivitycontroller.md)
- [RPBroadcastActivityControllerDelegate](replaykit/rpbroadcastactivitycontrollerdelegate.md)
- [RPBroadcastConfiguration](replaykit/rpbroadcastconfiguration.md)
