Tag: 共享扩展

在共享扩展中使用SVProgressHUD

我在iOS应用程序中使用SVProgressHUD,它的工作完美。 我想使用它也为这个应用程序的共享扩展,但它不显示应用程序。 我正在使用共享扩展视图的自定义视图,这里是我用来调用SVProgressHUD的代码。 请注意,打印上传进度正常工作。 我究竟做错了什么? 谢谢。 class ShareViewController: UIViewController { … Alamofire.upload(multipartFormData: { multipartFormData in multipartFormData.append(jpgImageData!, withName: "file",fileName: fname, mimeType: "image/jpg") for (key, value) in parameters { multipartFormData.append(value.data(using: String.Encoding.utf8)!, withName: key) } }, to:url!) { (result) in switch result { case .success(let upload, _, _): upload.uploadProgress(closure: { (progress) in print("Upload Progress: \(progress.fractionCompleted)") SVProgressHUD.setViewForExtension(self.view) SVProgressHUD.showProgress(Float(progress.fractionCompleted)) }) […]

iOS共享分机kUTTypeMovie获取缩略图

嘿,我在使用我的共享扩展从照片分享video时遇到了麻烦。 我的问题是,我想要获取我的共享扩展程序托pipe的照片应用程序中的video的缩略图和大小。 任何帮助是可观的,在此先感谢。

ios快速共享扩展:处理图像的最佳方式是什么?

我有一个共享扩展处理不同types的格式,如图像。 for attachment in content.attachments as! [NSItemProvider] { if attachment.hasItemConformingToTypeIdentifier(kUTTypeImage as String) { attachment.loadItem(forTypeIdentifier: kUTTypeImage as String, options: nil) { data, error in if error == nil { var contentData: Data? = nil //data could be raw Data if let data = data as? Data { contentData = data //data could be an URL } […]