如何将tableView数据导出为PDF并发送到电子邮件?

时间:2018-12-21 05:06:05

标签: ios swift4 xcode10.1

如何将tableView数据生成为PDF并通过电子邮件发送? 我已经尝试过使用下面的代码,但是我什么都没得到。我想以电子邮件的PDF格式导出tableView数据。谁能帮我吗?

   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)
    sendMail()
}

0 个答案:

没有答案