PSActivityImageViewController
Overview
This view controller allows you to share an image the same way as a normal UIActivityViewController
would, with one bonus: The image is actually shown on top of the UIActivityViewController
with a nice blurred background.
You can add any items you want to share, but only the image is displayed.
Screenshots
These screenshots are taken from my app TwoSlideOver. Check it out here
Videos
Input
image
: The image you want to share and at the same time display as a preview.activityItems
: All the items you want to share, with theimage
included.completion
: An optionalUIActivityViewController.CompletionWithItemsHandler
to handle any code after completion.
Usage
import PSActivityImageViewController
...
let activityImageVC = ActivityImageViewController(
image: someImage,
activityItems: [someImage, self], // or just [someImage]
completion: { activity, completed, _, error in
if let error = error {
print("Error: \(error.localizedDescription)")
return
}
// Do something with the rest of the information.
}
)
// Important for iPad, as otherwise the app will crash!
activityImageVC.popoverPresentationController?.sourceView = someView
activityImageVC.popoverPresentationController?.sourceRect = someView.bounds
present(activityImageVC, animated: true)
Warning
As is the case for UIActivityViewController
, on iPad you need to specify the source for the popoverPresentationController
.
Installation
Swift Package Manager
PSActivityImageViewController is available through Swift Package Manager.
Add it to an existing Xcode project as a package dependency:
- From the File menu, select Swift Packages › Add Package Dependency…
- Enter "https://github.com/psalzAppDev/PSActivityImageViewController" into the package repository URL text field
Requirements
- iOS 10.0+
- Xcode 12+
License
PSActivityImageViewController is available under the MIT license. See the LICENSE file for more info.