<!--
{
  "availability" : [
    "iOS: 12.0.0 - 27.0.0",
    "iPadOS: 12.0.0 - 27.0.0",
    "macCatalyst: 13.1.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "ReplayKit",
  "identifier" : "/documentation/ReplayKit/RPSystemBroadcastPickerView",
  "metadataVersion" : "0.1.0",
  "role" : "Class",
  "symbol" : {
    "kind" : "Class",
    "modules" : [
      "ReplayKit"
    ],
    "preciseIdentifier" : "c:objc(cs)RPSystemBroadcastPickerView"
  },
  "title" : "RPSystemBroadcastPickerView"
}
-->

# RPSystemBroadcastPickerView

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

```
class RPSystemBroadcastPickerView
```

## 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`](/documentation/ReplayKit/RPSystemBroadcastPickerView/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`](/documentation/ReplayKit/RPSystemBroadcastPickerView/showsMicrophoneButton) property. Set these properties before presenting [`RPSystemBroadcastPickerView`](/documentation/ReplayKit/RPSystemBroadcastPickerView), as shown here:

```swift
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`](/documentation/ReplayKit/RPSystemBroadcastPickerView/preferredExtension)

A bundle identifier of a broadcast extension.

[`showsMicrophoneButton`](/documentation/ReplayKit/RPSystemBroadcastPickerView/showsMicrophoneButton)

A Boolean value that indicates whether the microphone button is visible in the broadcast picker.

## Relationships

### Conforms To

[`UIResponderStandardEditActions`](/documentation/UIKit/UIResponderStandardEditActions)

[`UIDynamicItem`](/documentation/UIKit/UIDynamicItem)

[`UIPasteConfigurationSupporting`](/documentation/UIKit/UIPasteConfigurationSupporting)

[`CustomDebugStringConvertible`](/documentation/Swift/CustomDebugStringConvertible)

[`UIFocusEnvironment`](/documentation/UIKit/UIFocusEnvironment)

[`UITraitEnvironment`](/documentation/UIKit/UITraitEnvironment)

[`NSObjectProtocol`](/documentation/ObjectiveC/NSObjectProtocol)

[`UIFocusItemContainer`](/documentation/UIKit/UIFocusItemContainer)

[`UIUserActivityRestoring`](/documentation/UIKit/UIUserActivityRestoring)

[`Equatable`](/documentation/Swift/Equatable)

[`UIAppearanceContainer`](/documentation/UIKit/UIAppearanceContainer)

[`UITraitChangeObservable-67e94`](/documentation/UIKit/UITraitChangeObservable-67e94)

[`NSCoding`](/documentation/Foundation/NSCoding)

[`Sendable`](/documentation/Swift/Sendable)

[`UICoordinateSpace`](/documentation/UIKit/UICoordinateSpace)

[`UIAppearance`](/documentation/UIKit/UIAppearance)

[`UIPopoverPresentationControllerSourceItem`](/documentation/UIKit/UIPopoverPresentationControllerSourceItem)

[`CVarArg`](/documentation/Swift/CVarArg)

[`CustomStringConvertible`](/documentation/Swift/CustomStringConvertible)

[`UIAccessibilityIdentification`](/documentation/UIKit/UIAccessibilityIdentification)

[`Hashable`](/documentation/Swift/Hashable)

[`UIActivityItemsConfigurationProviding`](/documentation/UIKit/UIActivityItemsConfigurationProviding)

[`CLBodyIdentifiable`](/documentation/CoreLocation/CLBodyIdentifiable)

[`UILargeContentViewerItem`](/documentation/UIKit/UILargeContentViewerItem)

[`CMBodyIdentifiable`](/documentation/CoreMotion/CMBodyIdentifiable)

[`NSTouchBarProvider`](/documentation/AppKit/NSTouchBarProvider)

[`UIFocusItem`](/documentation/UIKit/UIFocusItem)

[`CALayerDelegate`](/documentation/QuartzCore/CALayerDelegate)

[`SendableMetatype`](/documentation/Swift/SendableMetatype)

### Inherits From

[`UIView`](/documentation/UIKit/UIView)

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)