Reputation: 597
A try to start a screen recording with RPScreenRecorder. I got the following error:
Recording interrupted by multitasking and content resizing
func startRecording() {
let recorder = RPScreenRecorder.shared()
recorder.startRecording(handler: { (error) in
if let unwrappedError = error {
print(unwrappedError.localizedDescription)
} else {
}
})
}
Before iOS 12.0 everything worked fine. From the update I get the error above.
Upvotes: 12
Views: 3452
Reputation: 1
We've been rejected same issue several times.
But we found a senario to re-produce as bellow, We reported it on Resolution Center in App Store Connect, then passed.
Now iOS13, we don't face this error at the above senario.
Upvotes: 0
Reputation: 1359
I had a similar problem and here is how I solved it. go to project then targets then capability switch on Background mode then enable audio and VOIP. It should work
Upvotes: 1
Reputation: 3476
I've done a lot of research on the errors and posted the solution Here.
For now my screen recording feature is bug free. But who knows what comes with the new OS updates
Upvotes: 0
Reputation: 31
My app has been rejected from App store for the same reason. So far the only workaround is to reboot the device.
Upvotes: 1