iOS Swift: comparte en Instagram con subtítulos
Puedo compartir con éxito una imagen enInstagram utilizando laUIDocumentInteractionController
, pero elInstagramCaption
La clave no funcionará. Este es mi 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)
¿Qué estoy haciendo mal?