Is it possible to have a share on Facebook link on a website that opens the share dialog in the native App?
Current behavio
I know it has been a couple of years, but for whom it may concern:
Have a look at this answer; Xcode : sharing content via Action Sheet.
Let me copy that answer overhere as well:
Swift
let shareText = "Hello, world!"
if let image = UIImage(named: "myImage") {
let vc = UIActivityViewController(activityItems: [shareText, image], applicationActivities: [])
presentViewController(vc, animated: true, completion: nil)
}
Try links for tutorials