1

When using SLComposeViewController/SLServiceTypeTwitter, is it possible to attach sound or video? With an object instanciated as follow:

SLComposeViewController *tweetController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];

I can use methods like addURL or addImage, but nothing like addSound or addVideo that I can see.

Is there a different way that one can use?

san
  • 3,350
  • 1
  • 28
  • 40
Michel
  • 10,303
  • 17
  • 82
  • 179

1 Answers1

2

Twitter doesn't support audio or video natively.

That's why third-party services such as "Twitpic" "TwitVid" (aka Telly) exist.

Which hopefully explains why SLComposeViewController doesn't support adding sounds or videos at this point in time.

Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215
  • I see. Thanks for the info. Using SLServiceTypeFacebook though raises the same issue. Is it for the same reason? And is there a way around? – Michel Feb 03 '14 at 03:56