我正在将PDF加载到UIWebview
中,我将背景颜色更改为清除并将opaque设置为false。但是现在我想要移除UIWebView
中的填充或边距,因此UIWebview
就是屏幕。
我创建了UIWebview
,如此:
let webview = UIWebView()
webview.frame = self.view.bounds
webview.scrollView.frame = webview.frame
webview.userInteractionEnabled = true
webview.scalesPageToFit = true
webview.becomeFirstResponder()
webview.delegate = self
webview.scrollView.delegate = self
webview.opaque = false
webview.backgroundColor = UIColor.clearColor()
self.view.addSubview(webview)
webview.loadRequest(NSURLRequest(URL:url))
webview.gestureRecognizers = [pinchRecognizer, panRecognizer]
我将其应用于webViewDidFinishLoad方法
func webViewDidFinishLoad(webView: UIWebView) {
let padding = "document.body.style.margin='0';document.body.style.padding = '0'"
webView.stringByEvaluatingJavaScriptFromString(padding)
}
但仍有填充或边距,看起来像这样:
我该如何解决这个问题?
我需要修复这个问题的原因是因为我要将这个UIWebView保存为PDF,当我保存它时,还有额外的间距,这里是我的PDF生成代码:
func drawPDFUsingPrintPageRenderer(printPageRenderer: UIPrintPageRenderer) -> NSData! {
let data = NSMutableData()
UIGraphicsBeginPDFContextToData(data, CGRectZero, nil)
UIGraphicsBeginPDFPage()
printPageRenderer.drawPageAtIndex(0, inRect: UIGraphicsGetPDFContextBounds())
UIGraphicsEndPDFContext()
return data
}
以及更多
let screenHeight = appDelegate.webview!.scrollView.bounds.size.height
let heightStr = appDelegate.webview!.scrollView.bounds.size.height
let height = heightStr
let pages = ceil(height / screenHeight)
let pdfMutableData = NSMutableData()
UIGraphicsBeginPDFContextToData(pdfMutableData, appDelegate.webview!.scrollView.bounds, nil)
for i in 0..<Int(pages)
{
if (CGFloat((i+1)) * screenHeight > CGFloat(height)) {
var f = appDelegate.webview!.scrollView.frame
f.size.height -= ((CGFloat((i+1)) * screenHeight) - CGFloat(height));
appDelegate.webview!.scrollView.frame = f
}
UIGraphicsBeginPDFPage()
let currentContext = UIGraphicsGetCurrentContext()
appDelegate.webview!.scrollView.setContentOffset(CGPointMake(0, screenHeight * CGFloat(i)), animated: false)
appDelegate.webview!.scrollView.layer.renderInContext(currentContext!)
}
UIGraphicsEndPDFContext()
答案 0 :(得分:4)
将Web视图位于原点时将滚动视图框设置为Web视图框将无效,否则无效。
调整滚动视图contentInset
:
// set t,l,b,r to be negative CGFloat values that suit your content
webView.scrollView.contentInset = UIEdgeInsetsMake(t,l,b,r);
答案 1 :(得分:3)
这似乎解决了我的问题,不确定它与其他PDF文档的合作程度(肖像)我的是Landscape,它运行正常。
appDelegate.webview = UIWebView()
appDelegate.webview!.frame = CGRect(x: 0 - 8, y: 0 - 8, width: self.view.bounds.size.width + 14, height: self.view.bounds.size.height + 14)
appDelegate.webview!.scrollView.frame = CGRect(x: 0 - 8, y: 0 - 8, width: self.view.bounds.size.width + 14, height: self.view.bounds.size.height + 14)
然后保存PDF
func createPdfFromView(aView: UIView, saveToDocumentsWithFileName fileName: String)
{
let pdfData = NSMutableData()
UIGraphicsBeginPDFContextToData(pdfData, CGRect(x: 0 + 8, y: 0 - 8, width: aView.bounds.size.width - 17, height: aView.bounds.size.height - 117), nil)
UIGraphicsBeginPDFPage()
guard let pdfContext = UIGraphicsGetCurrentContext() else { return }
aView.layer.renderInContext(pdfContext)
UIGraphicsEndPDFContext()
if let documentDirectories = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true).first {
let documentsFileName = documentDirectories + "/" + fileName
debugPrint(documentsFileName)
pdfData.writeToFile(documentsFileName, atomically: true)
}
}
如果我做错了,请告诉我
答案 2 :(得分:1)
我不确定你是否找到了答案,但作为一个快速解决方法,你可以给出预先调整的约束。
让我们说如果你的填充空间是4个边的10px,如果它总是一个常数
解决方法是:
为其周围的webView提供-10空间,同时不要忘记在没有-10px侧面限制的情况下向webView添加超视图并标记超级视图
clipsToBounds = true
clipSubViews = true
答案 3 :(得分:1)
我可以使用负内容插件。这适用于iOS 11和10,在Swift 4上:
webView.scrollView.contentInset = UIEdgeInsets(top: -8, left: -8, bottom: -8, right: -8)
答案 4 :(得分:0)
此示例的顶部间距为64,以允许导航栏。
let webView: UIWebView = UIWebView()
webView.frame = self.view.bounds
webView.scrollView.frame = webView.frame
webView.scrollView.contentInset = UIEdgeInsetsMake(64,0,0,0)
答案 5 :(得分:0)
我不知道为什么我会来这里很多次,但是google从未将我发送到实际回答的问题。对于有相同问题的任何人,这里是实际答案:https://stackoverflow.com/a/2442859/3393964
问题是浏览器添加了默认边距,一个简单的解决方法就是添加此边距:
body { margin: 0; padding: 0; }