Sharing on social media
Sharing on facebook import Social //create a sharing function for Facebook, in button clicked if let vc = SLComposeViewController(forServiceType: SLServiceTypeFacebook) { shareOnFb(vc: vc) } //add function below func shareOnFb(vc: SLComposeViewController) { vc.setInitialText("Posted this from my swift app") vc.add(thisImage) let theurl = URL(string: "http://swiftcodingreferencebook.blogspot.sg") vc.add(theurl) present(vc, animated: true, completion: nil) } Sharing on Instagram in info.plist Create a key of type array: LSApplicationQueriesSchemes Control+click and add a row Item 0 value: instagram add to class ViewController: UIViewController,...
Comments
Post a Comment