iOS – 将图像发送到Instagram – DocumentInteraction

前端之家收集整理的这篇文章主要介绍了iOS – 将图像发送到Instagram – DocumentInteraction前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以绕过行动共享表将照片分享给Instagram?

请注意,我知道UIDocumentInteractionController和钩子,事实上它工作正常.使用他们的示例代码,您可以获得Copy to Instagram选项(如果您使用独家UTI或可以处理JPG / PNG的大型应用程序列表,以及Instagram,则可以是唯一的).

这很好,但我想知道是否有办法执行“复制到Instagram”操作,而无需在iOS 9中显示UIDocumentInteractionController菜单.

为了记录,这是完美运行的代码的简化版本.假设你有一个有效的NSURL ……

  1. guard let data: NSData = NSData(contentsOfURL: url),image = UIImage(data: data) else {
  2. return
  3. }
  4.  
  5. let imageData = UIImageJPEGRepresentation(image,100)
  6. let captionString = "caption"
  7. let writePath = (NSTemporaryDirectory() as NSString).stringByAppendingPathComponent("instagram.ig")
  8.  
  9. guard let _ = imageData?.writeToFile(writePath,atomically: true) else {
  10. return
  11. }
  12.  
  13. let fileURL = NSURL(fileURLWithPath: writePath)
  14. self.documentController = UIDocumentInteractionController(URL: fileURL)
  15. self.documentController.delegate = self
  16. self.documentController.UTI = "com.instagram.photo"
  17. self.documentController.annotation = NSDictionary(object: captionString,forKey: "InstagramCaption")
  18. self.documentController.presentOpenInMenuFromRect(viewController.view.frame,inView: viewController.view,animated: true)

问题是,这将提供一个“操作表”,我想避免这样做,如果可能的话,我想使用instagram.ige(或任何名称使其独占)并跳过此ActionSheet.

那可能吗?

更新:我还没有找到解决方案,但似乎Instagram最终添加/添加扩展:“Instagram最近为其iOS应用程序添加了共享扩展功能.现在,您可以直接将第三方应用程序的照片分享到Instagram”
来源:http://www.macworld.com/article/3080038/data-center-cloud/new-instagram-feature-for-ios-makes-it-easier-to-share-photos-from-other-apps.html

解决方法

  1. import Photos
  2. ...
  3.  
  4. func postImageToInstagram(image: UIImage) {
  5. UIImageWriteToSavedPhotosAlbum(image,self,#selector(SocialShare.image(_:didFinishSavingWithError:contextInfo:)),nil)
  6. }
  7. func image(image: UIImage,didFinishSavingWithError error: NSError?,contextInfo:UnsafePointer<Void>) {
  8. if error != nil {
  9. print(error)
  10. }
  11.  
  12. let fetchOptions = PHFetchOptions()
  13. fetchOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate",ascending: false)]
  14. let fetchResult = PHAsset.fetchAssetsWithMediaType(.Image,options: fetchOptions)
  15. if let lastAsset = fetchResult.firstObject as? PHAsset {
  16. let localIdentifier = lastAsset.localIdentifier
  17. let u = "instagram://library?LocalIdentifier=" + localIdentifier
  18. let url = NSURL(string: u)!
  19. if UIApplication.sharedApplication().canOpenURL(url) {
  20. UIApplication.sharedApplication().openURL(NSURL(string: u)!)
  21. } else {
  22. let alertController = UIAlertController(title: "Error",message: "Instagram is not installed",preferredStyle: .Alert)
  23. alertController.addAction(UIAlertAction(title: "OK",style: .Default,handler: nil))
  24. self.presentViewController(alertController,animated: true,completion: nil)
  25. }
  26.  
  27. }
  28. }

猜你在找的iOS相关文章