You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
Nerway
changed the title
cameraManager.stopVideoRecording() don't seem to work on iOS 14.5
cameraManager.stopVideoRecording() doesn't seem to work on iOS 14.5
May 5, 2021
The solution is to request for readWrite authorization after iOS 14's privacy policy updates.
Check info.plist for Privacy - Photo Library .... updates.
PHPhotoLibrary.requestAuthorization(for: .readWrite) { status in
switch status {
case .notDetermined:
case .restricted:
case .denied:
case .authorized:
case .limited: @unknown default:
}
}
Also, Apple's official article about this states:
"After the user sets the app’s authorization status, the system remembers their choice and won’t prompt them again. However, the user can change this choice at any time using the Settings app. Prepare your app to respond appropriately when a user changes your appʼs access."
Stopped working on iOS 14.5 update.
The text was updated successfully, but these errors were encountered: