I don't know why I seem to be the only one with this problem, but:
I create an SLComposeViewController for my iPhone application, display it, everything works great.
SLComposeViewController *mySLComposerSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[self presentViewController:mySLComposerSheet animated:YES completion:nil];
It shows I have 140 characters. I enter a link: "http://www.google.com", Now I only have 109 characters left. The link takes up 31 characters. Shouldn't it only take up 20 characters?
I try any link, the same thing happens, and everywhere I search, links are supposed to be 20 characters, maximum.
Is this a property of the SLComposeViewController, something I can get around? Or am I stuck with URL's consuming 31 characters no matter what?
Thanks