我目前正在加载collectionView
WebViews
这是好的,但效果不佳,例如广告经常会模糊webview
的内容。我想要做的是以编程方式加载webview
并拍摄快照,然后使用图像重新加载collectionView
而不是WebViews
本身?
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) as! ResultsCollectionViewCell
if let url = Urls?[indexPath.row] {
self.activityIN.stopAnimating()
self.progressLabel.removeFromSuperview()
cell.webView.loadRequest(URLRequest(url: url))
}
return cell
}
答案 0 :(得分:0)