我注意到WKWebView
文档现在列出了一个名为takeSnapshot
的方法,iOS 11和macOS 10.13及更高版本(Xcode 9 beta)支持该方法。
有没有人玩过或实施过?我试图让它在操场上工作,但我不知道从哪里开始?这是WKWebView
上的方法吗?
我的代码:
import UIKit
import PlaygroundSupport
import WebKit
let frame = CGRect(x: 0, y: 0, width: 800, height:600)
let web = WKWebView(frame: frame)
let rq = URLRequest(url: NSURL(string: "http://apple.com")! as URL)
web.load(rq)
PlaygroundPage.current.liveView = web
PlaygroundPage.current.needsIndefiniteExecution = true
//Take snapshot?
答案 0 :(得分:5)
就我测试而言,方法takeSnapshot(with:completionHandler:)
实际上作为实例方法存在并且按预期工作。
只是它有点难以使用它。
该方法将其第一个参数声明为WKSnapshotConfiguration?
,但类WKSnapshotConfiguration
未导入import WebKit
。您可以将nil
传递给参数,但要使用该方法,您需要导入类型WKSnapshotConfiguration
。我无法找到任何从属子模块来导入WKSnapshotConfiguration
。
因此,如果您想要使用此新功能,则需要使用bridging-header创建一个App项目。 (如果您知道如何在Playground中使用桥接标题,您可以在其中测试此功能。但我不知道您是否可以或如何。)
{项目名} -Bridging-Header.h:
@import CoreGraphics;
#import <WebKit/WKSnapshotConfiguration.h>
ViewController.swift的一个例子:
import UIKit
import WebKit
class ViewController: UIViewController {
@IBOutlet weak var webView: WKWebView!
@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
let request = URLRequest(url: URL(string: "http://apple.com")!)
webView.load(request)
}
@IBAction func buttonPressed(_ sender: UIButton) {
webView.takeSnapshot(with: nil) {image, error in
if let image = image {
self.imageView.image = image
print("Got snapshot")
} else {
print("Failed taking snapshot: \(error?.localizedDescription ?? "--")")
}
}
}
}
(在视图上放置WKWebView
,UIImageView
和UIButton
。)
另外,这似乎是WebKit框架的一个错误,你最好向Apple发送一个bug report。