I am trying to post something on the FB page. I have successfully integrated the code and I can open FB in my app. I am using the following code:
let vc = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
vc.setInitialText("Hurray! Welcome to My App")
presentViewController(vc, animated: true, completion: nil)
When I try to run this, I am facing error as No fb app is installed in the device.
I want to post on FB page and I don't want the users to have FB app in their mobile. Is it possible? If so how?