打印所有视图控制器内容

时间:2017-11-12 21:33:59

标签: ios swift

我发现这个代码有效,但我需要以某种方式更改它,以便打印整个滚动视图。此代码仅显示屏幕上显示的内容。

 @IBAction func btnPrint(_ sender: UIBarButtonItem) {


    let printArea = pdfDataWithTableView(tableView: tableView)

    let activityController = UIActivityViewController(activityItems: [printArea], applicationActivities: nil)

    present(activityController, animated: true, completion: nil)
}

func pdfDataWithTableView(tableView: UITableView) {
    let priorBounds = tableView.bounds
    let fittedSize = tableView.sizeThatFits(CGSize(width:priorBounds.size.width, height:tableView.contentSize.height))
    tableView.bounds = CGRect(x:0, y:0, width:fittedSize.width, height:fittedSize.height)
    let pdfPageBounds = CGRect(x:0, y:0, width:tableView.frame.width, height:self.view.frame.height)
    let pdfData = NSMutableData()
    UIGraphicsBeginPDFContextToData(pdfData, pdfPageBounds,nil)
    var pageOriginY: CGFloat = 0
    while pageOriginY < fittedSize.height {
        UIGraphicsBeginPDFPageWithInfo(pdfPageBounds, nil)
        UIGraphicsGetCurrentContext()!.saveGState()
        UIGraphicsGetCurrentContext()!.translateBy(x: 0, y: -pageOriginY)
        tableView.layer.render(in: UIGraphicsGetCurrentContext()!)
        UIGraphicsGetCurrentContext()!.restoreGState()
        pageOriginY += pdfPageBounds.size.height
    }
    UIGraphicsEndPDFContext()
    tableView.bounds = priorBounds
    var docURL = (FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)).last! as URL
    docURL = docURL.appendingPathComponent("myDocument.pdf")
    pdfData.write(to: docURL as URL, atomically: true)
}

}

0 个答案:

没有答案
相关问题