It says on this post, that App Clips support the "Photos" Library. However, whenever I try to save a photo to the user's camera roll, an "Unknown Error" occurs.
I tried requesting library access with:
switch (status)
{
case .authorized:
// Permission Granted
print("Photo Library Authorized")
case .denied:
// Permission Denied
print("Photo Library User Denied")
default:
print("Photo Library Restricted")
}
}
but the result is always permission denied. Can you not save photos to the camera roll from an App Clip? This seems like it would be very basic, useful functionality