如何在Share Extension中使用swift获取页面标题

时间:2017-10-30 14:41:14

标签: ios swift ios8-share-extension

我正在开发用于safari的共享扩展。 我可以获得分享扩展的网址。但是我无法获得页面标题。

let puclicURL = String(kUTTypeURL)
if itemProvider.hasItemConformingToTypeIdentifier(puclicURL) {
    itemProvider.loadItem(forTypeIdentifier: puclicURL, options: nil, completionHandler: { 
        (item, error) in
            if let url: NSURL = item as? NSURL {
                print("url", url)
                // I want page title also
            }
        }
   }

而且,我尝试了以下代码。https://stackoverflow.com/a/33139355/5060282 我认为下面的代码只能在Action Extension中运行。不分享扩展。

let propertyList = String(kUTTypePropertyList)
        if itemProvider.hasItemConformingToTypeIdentifier(propertyList) {
            itemProvider.loadItem(forTypeIdentifier: propertyList, options: nil, completionHandler: { (item, error) -> Void in
                let dictionary = item as! NSDictionary
                OperationQueue.main.addOperation {
                    let results = dictionary[NSExtensionJavaScriptPreprocessingResultsKey] as! NSDictionary
                    let title = NSURL(string: (results["title"] as! String))
                    //yay, you got the title now
                    print(title)
                }
            })
        } else {
            print("error")
        }
// But, error...

0 个答案:

没有答案