Sharing Images With UIActivityViewController & UIActivityItemSource | by Derek Kim | Medium


This article demonstrates how to implement image-sharing functionality in iOS apps using UIActivityViewController and UIActivityItemSource.
AI Summary available — skim the key points instantly. Show AI Generated Summary
Show AI Generated Summary

Sharing Images With UIActivityViewController & UIActivityItemSource

Hello, this is Derek!

Today I wanted to write about implementing a button to share an images with others. By the end of this blog, you will now understand how to implement sharing functionality using UIActivityViewController and UIActivityItemSource. See image example below for a visual example:

Suppose you have an app that has an image. I’ve gone ahead and created my own simple UI view for this particular demo.

When the button is pressed, I want to show the share view that was shown earlier. Let’s see what exactly we want to show on the sharing view.

We first have an image thumbnail on the left, with a title text, and a subtitle that consists the image’s file type and file size.

Let’s start with the basic implementation example. To share an image, we must present UIActivityViewController and pass the data to activityItems parameter.

public init(activityItems: [Any], applicationActivities: [UIActivity]?)

It takes an array of [Any], which means we can also pass other types such as String, Int or any other valid types.

shareButton.addAction(    UIAction { [weak self] _ in        guard let self = self else { return }        guard let image = imageView.image else { return }let images = [image]        let activityVC = UIActivityViewController(activityItems: images, applicationActivities: nil)        self.present(activityVC, animated: true)    }, for: .touchUpInside)

In this simple example, when the user taps the shareButton, it will present the activityVC, which is the UIActivityViewController with the images we have passed along. However, you’ll notice that this itself has couple of issues.

  1. Image is not showing in the actual sharing view
  2. We are missing the title, and the subtitle

Was this article displayed correctly? Not happy with what you see?

We located an Open Access version of this article, legally shared by the author or publisher. Open It
Tabs Reminder: Tabs piling up in your browser? Set a reminder for them, close them and get notified at the right time.

Try our Chrome extension today!


Share this article with your
friends and colleagues.
Earn points from views and
referrals who sign up.
Learn more

Facebook

Save articles to reading lists
and access them on any device


Share this article with your
friends and colleagues.
Earn points from views and
referrals who sign up.
Learn more

Facebook

Save articles to reading lists
and access them on any device