How to remove the 'Add To Shared Album' from the excludedActivityTypes UIActivityViewController

Viewed 14
let activityViewController = UIActivityViewController(activityItems: send as [Any], applicationActivities: nil)

    activityViewController.excludedActivityTypes = [.airDrop, .saveToCameraRoll, .copyToPasteboard,
    ]

Looking for a simple .addToSharedAlbum or similar to .saveToCameraRoll to disable the option but have not been able to disable the ability to save the item to shared albums.

Is this possible? How do I disable this 'Add To Shared Album' option?

Thanks in advance

0 Answers
Related