How to share image & text/url using UIActivityViewController

I tried the code given below to share (on Facebook/Whatsapp etc) a UIImage and a String.

Code Block
let shareController: UIActivityViewController = {
let activities: [Any] = [image, text]
let controller = UIActivityViewController(activityItems: activities, applicationActivities: nil)
return controller}()
screen.present(shareController, animated: true, completion: nil)

I am unable to share image along with the text. I am able share the image, only if I remove the text. How can I share both at the same time
have you tried using AnyObject ?
Code Block
let activities: [AnyObject] = [image as AnyObject, text as AnyObject]


I read this (but could not check)
https://stackoverflow.com/questions/35931946/basic-example-for-sharing-text-or-image-with-uiactivityviewcontroller-in-swift

According to FB update policy, either a URL or an image can be shared. text can't 

Have you checked what you can do on FaceBook ?

this is not work for me..Give me solution to share text along with image.

Thanks in advanced.

is their any update about this issue i'm facing the same issue while i share image and text on snapchat its getting screen stuck.

How to share image & text/url using UIActivityViewController
 
 
Q