UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

How to show both URL and a string in UIActivityViewController?

Forums > Swift

Hi guys,

Following Paul's example, I tried to create a UIActivityViewController, where both the URL and the string would be shown when tapping the 'share' button:

@objc func shareRecommend() {
    let items: [Any] = ["DOWNLOAD THIS APP!", URL(string: "https://www.mateuszApp.com")!]
    let vc = UIActivityViewController(activityItems: items, applicationActivities: [])
    vc.popoverPresentationController?.barButtonItem = navigationItem.rightBarButtonItem
    present(vc, animated: true)
    }

However, the only thing that appears when the button is tapped is either the URL or the string, depending on which one comes first in the array. How to fix it to make them BOTH appear?

Thanks!

2      

Hi, did you check UIActivityItemProvider? I havent into it deeper yet but I think this is the solution for more complex sharing with activity controller.

https://developer.apple.com/documentation/uikit/uiactivityitemprovider

2      

Hacking with Swift is sponsored by RevenueCat

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.