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 controller . I am using Xcode Version 11.3.1 (11C504). Is there any solution to stop this exception?
On iOS13 (with Xcode11) get Fatal Exception: NSInvalidArgumentException when trying to present RPSystemBroadcastPickerView
302 Views Asked by Ankita Pundir At
1
There are 1 best solutions below
Related Questions in IOS13
- Since iOS 14, my app does not display images only when with the debugger or a device with iOS 13. Also, the keyboard won't show all keys
- Xcode 11 running on Mojave fails despite Apple's documentation saying Mojave is supported
- SwiftUI List updating from Method
- NavigationLink hides the Destination View, or causes infinite view updates
- Getting Error while upgrading to new Xcode 12
- App behavior changes when going from iOS 13.6.1 to iOS 14
- Ios13: performFetchWithCompletionHandler not getting called anymore
- Swift timer not following correct interval
- Cloud Firestore .getDocuments callback not functioning on Swift5
- Can we use VoIP push for normal push notification?
- Apps complied with xCode 11.7 but running on iOS 14+ issues
- Getting issue on strokeWidth NSAttributedString in iOS 14
- NSKeyValuePopPendingNotificationLocal Crash on iOS 13 and 14
- Exclude UI elements from ReplayKit screen capturing
- how to present a tabBarViewController(created in storyboard) using code when pressed a particular button in swift5?
Related Questions in XCODE11
- How to link missing pod headers - Xcode 11.2.1
- Xcode throws error 'Module compiled with Swift 5.1.1 cannot be imported by the Swift 5.2 compiler'
- Can not create archive in Xcode but can build project
- UITableViewCell swipe action
- xcodebuild strips CFBundleVersion and CFBundleShortVersionString from Info.plist
- Keep directory structure in Copy Files Build Phase in XCode
- Xcode 11 - I can connect actions but not outlets?
- How do I change 'Selects Code Structure' from cmd + click to a keybinding?
- How to use Swift 5.3 with XCode 11.7 on MacOS Mojave?
- Xcode Button missing from element tree hierarchy
- how to present a tabBarViewController(created in storyboard) using code when pressed a particular button in swift5?
- Failed uploading iPA in Testflight
- System overloaded with 'DTServiceHub' process
- Unity Xcode Build Succeed but app not opening
- Fetch core data object into a SwiftUI picker
Related Questions in REPLAYKIT
- RPPreviewViewController disables audio after playback
- ReplayKit doesn't work when work with webrtc
- ReplayKit RPScreenRecorder fails to record didStopRecordingWith RPRecordingErrorDomain 5804
- Unity ReplayKit how to bypass native preview?
- RPScreenRecorder stopRecording block not getting called
- Exclude UI elements from ReplayKit screen capturing
- IOS ReplayKit's alert window doesn't stop Flutter Future execution
- Custom alert for ReplayKit screen capture
- Hide Broadcast Upload Extension in Control Center
- replayKit RPSampleBufferType does not have video
- How to Record Screen, when app is in background?
- ReplayKit stops screen recording in background mode of the application or outside the app?
- iOS crash due to memory exceeding 50 mb limit error ReplayKit
- How to make a screen-record guiding video for iOS device
- Could not build Objective-C module 'Your Framework'
Related Questions in RPSYSTEMBROADCASTPICKERVIEW
- iOS 17 RPSystemBroadcastPickerView not working
- iOS Broadcast upload extension fails to start after clicking on "Start broadcast"
- Why is RPBroadcastPickerView rendering a blank white screen?
- When add RPSystemBroadcastPickerView to my custom view and send event to it internal button, UI cannot response
- How to detect when RPSystemBroadcastPickerView is dismissed?
- Swift Broadcast Replaykit Stop Recording
- Show exception while click on RPSystemBroadcastPickerView
- How to detect when the RPSystemBroadcastPickerView is tapped
- On iOS13 (with Xcode11) get Fatal Exception: NSInvalidArgumentException when trying to present RPSystemBroadcastPickerView
- Error by RPSystemBroadcastPickerView "Unbalanced calls to begin/end appearance transitions"
- is it possible add own app name in RPSystemBroadcastPickerView for screen share in google meet
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is because iOS 13 uses a new presentation style instead of the full screen. And it doesn't support the PartialCurl transition you need to change the default presentation style:
var navigationController = new UINavigationController(ctrl); navigationController.ModalPresentationStyle = UIModalPresentationStyle.FullScreen; ctrl.ModalTransitionStyle = UIModalTransitionStyle.PartialCurl; PresentViewController(navigationController, animated: true, null);