Post

Replies

Boosts

Views

Activity

Reply to iOS 13 UIActivityViewController automatically present previous VC after image saving
If it helps anyone, found this workaround in SO.let fakeViewController = TransparentViewController() fakeViewController.modalPresentationStyle = .overFullScreen activityViewController.completionWithItemsHandler = { [weak fakeViewController] _, _, _, _ in if let presentingViewController = fakeViewController?.presentingViewController { presentingViewController.dismiss(animated: false, completion: nil) } else { fakeViewController?.dismiss(animated: false, completion: nil) } } present(fakeViewController, animated: true) { [weak fakeViewController] in fakeViewController?.present(activityViewController, animated: true, completion: nil) }Tested in iOS 13.3.1 and works as expected.
Mar ’20