【发布时间】:2015-06-23 20:27:45
【问题描述】:
我已经完成以下代码在 Instagram 上发布图像和文本
let fileURL = NSURL(fileURLWithPath: writePath)
self.documentController = UIDocumentInteractionController(URL: fileURL)
self.documentController.delegate = self
self.documentController.UTI = "com.instagram.exclusivegram"//"com.instagram.photo"
self.documentController.annotation = NSDictionary(object: strTitle as String, forKey: "InstagramCaption")
self.documentController.presentOpenInMenuFromRect(self.view.frame, inView: self.view, animated: true)
它在 iOS 8.3 中运行良好,但在 iOS 9 中缺少 Caption。 为什么会这样,我该如何解决?
【问题讨论】: