Questions tagged [rpsystembroadcastpickerview]

This is used for broadcast our mobile screen. When it is initiated from our app, it shows start broadcast view. By clicking start broadcast, our mobile screen started to capture. This will work even our app in background. This is available from iOS 12 only.

9 questions
5
votes
2 answers

How to detect when RPSystemBroadcastPickerView is dismissed?

In the app, I am using a RPSystemBroadcastPickerView to start a system-wide screen recording. I need to react to the user starting screen record or dismissing the shown picker view. In both cases, the system view gets dismissed. I assumed that…
Milan Nosáľ
  • 19,169
  • 4
  • 55
  • 90
5
votes
2 answers

How to detect when the RPSystemBroadcastPickerView is tapped

I am using RPSystemBroadcastPickerView to start a system-wide screen recording from my app. The RPSystemBroadcastPickerView is completely autonomous in starting the recording and everything, which I guess makes sense - only user can start the screen…
Milan Nosáľ
  • 19,169
  • 4
  • 55
  • 90
2
votes
1 answer

Why is RPBroadcastPickerView rendering a blank white screen?

Ive created a native iOS module for a react-native (v0.61.5) application. all it does is return the native RPBroadcastPickerView. what i expect is the picker view to be displayed, but only a blank white screen displays in my test. heres what the…
2
votes
1 answer

Show exception while click on RPSystemBroadcastPickerView

While clicking on RPSystemBroadcastPickerView's subview button, a controller may present. but t is giving an exception with the following description:- Fatal Exception: NSInvalidArgumentException Application tried to present modally an active…
2
votes
2 answers

Swift Broadcast Replaykit Stop Recording

I have this code for running the BroadCast now I need one Button in App to stop broadcast without going to Notification Centre is that possible. override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after…
MidDev
  • 182
  • 1
  • 15
2
votes
0 answers

Error by RPSystemBroadcastPickerView "Unbalanced calls to begin/end appearance transitions"

I am using RPSystemBroadcastPickerView to enable the user start broadcast in simpler way. I've created new iOS "Single View App" project, added the code to ViewController class: override func viewDidLoad() { super.viewDidLoad() // Do…
Bws Sluk
  • 478
  • 5
  • 11
1
vote
1 answer

On iOS13 (with Xcode11) get Fatal Exception: NSInvalidArgumentException when trying to present RPSystemBroadcastPickerView

While presenting RPSystemBroadcastPickerView on iOS 13, it shows an exception with the following description: Fatal Exception: NSInvalidArgumentException Application tried to present UIModalTransitionStylePartialCurl to or from non-fullscreen view…
0
votes
0 answers

is it possible add own app name in RPSystemBroadcastPickerView for screen share in google meet

I want to share screen even when app is in background. I implemented broadcast upload extension. Added the app group and bundle id in extension target. But on sharing my app is not showing in RPSystemBroadcastPickerView. it has photos and meet…
0
votes
1 answer

When add RPSystemBroadcastPickerView to my custom view and send event to it internal button, UI cannot response

When adding RPSystemBroadcastPickerView to my custom view on iOS 12, and send touch event to its internal button, UI blocked and cannot response any touch event. Here is my code: When I receive a notification, I call this method to init my custom…