Hi my game has a post to Facebook button. I want the user to be able to post their highscore but not be able to change it but be able to type a message in with their post. How do i do this? the code i have so far is:
@IBAction func ShareToFacebook(sender: AnyObject) {
var SharetoFacebook: SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
var posting = finalTime.text
SharetoFacebook.setInitialText("New Highscore ohhhhh yea :) \n \n " + posting!)
SharetoFacebook.addImage(UIImage(named: "upload.png"))
self.presentViewController(SharetoFacebook, animated: true, completion: nil)
basically I don't want them to be able to edit "posting"