I want to share multiple UIImages to Camera Roll by using UIActivityViewController. However, when I share more than 5 photos, it often loses photos. It seems like iOS's bug?
// images: [UIImage]
let activityVC = UIActivityViewController(avtivityItems: images, applicationActivities: nil)
present(activityVC, animated: true, completion: nil)
I want to save as many photos to Camera Roll as I have chosen when I tap option called "Save XX photos to album" which appears in activityVC. But it often failed. Is there any way to guarantee not lose photos?