iOS Swift - Compartilhe no Instagram com legendas
Consigo compartilhar uma imagem com êxitoInstagram usando oUIDocumentInteractionController
, mas oInstagramCaption
chave não funcionará. Este é o meu código:
self.controller = UIDocumentInteractionController()
// controller.delegate = self
self.controller.URL = fileUri
// HERE, the caption won't appear.
self.controller.annotation = NSDictionary(objectsAndKeys: "my caption", "InstagramCaption")
self.controller.UTI = "com.instagram.exclusivegram"
self.controller.presentOpenInMenuFromRect(CGRectZero, inView: self.view, animated: true)
O que estou fazendo errado?