Reputation:
How do I share text and a link for Facebook through UIActivityController
? I can add an URL but not text, is this possible to do somehow?
I have the following today:
let activityItems = ["Some text", "", "http://test.com"]
let vc = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
self.presentViewController(vc, animated: true, completion: nil)
For twitter, mail and sms I get both the text and the URL, for Facebook only the URL.
So
Upvotes: 1
Views: 1437