Skip to content Skip to sidebar Skip to footer

Add A Page Break In Html For PDFKit In Swift

I'm creating a PDF with HTML and PDFKit as follows: let contextString = '

hello

This is a test

' let print

Solution 1:

I was able to get your code working with a single change to your contextString.

By changing it to page-break-before instead of page-break-after it seems to work. This is what I changed your contextString to, I used a multiline string as it is easier to read and gave it some clearer content.

let contextString = """
<p>Content in page 1</p>
<p style=\"page-break-before: always;\"></p>
<p>Content in page 2</p>
"""

Here is a very simple example that you could drop into Xcode.

class ViewController: UIViewController {

    let button = UIButton()
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        view.addSubview(button)
        button.translatesAutoresizingMaskIntoConstraints = false

        button.setTitle("Print", for: .normal)
        button.setTitleColor(.systemBlue, for: .normal)
        button.addTarget(self, action: #selector(tapped), for: .touchUpInside)

        NSLayoutConstraint.activate([
            button.centerXAnchor.constraint(equalTo: view.centerXAnchor),
            button.centerYAnchor.constraint(equalTo: view.centerYAnchor),
            button.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 20),
        ])
        view.backgroundColor = .systemBackground
    }

    @objc func tapped() {

        let contextString = """
        <p>Content in page 1</p>
        <p style=\"page-break-before: always;\"></p>
        <p>Content in page 2</p>
        """

        let print = UIMarkupTextPrintFormatter(markupText: contextString)


        let render = UIPrintPageRenderer()
        render.addPrintFormatter(print, startingAtPageAt: 0)

        let page = CGRect(x: 0, y: 0, width: 595.2, height: 841.8) // A4, 72 dpi
        render.setValue(page, forKey: "paperRect")
        render.setValue(page, forKey: "printableRect")

        let pdfData = NSMutableData()
        UIGraphicsBeginPDFContextToData(pdfData, .zero, nil)

        for i in 0..<render.numberOfPages {
        UIGraphicsBeginPDFPage();
            render.drawPage(at: i, in: UIGraphicsGetPDFContextBounds())
        }
        UIGraphicsEndPDFContext();

        let av = UIActivityViewController(activityItems: [pdfData], applicationActivities: nil)

        self.present(av, animated: true, completion: nil)
    }
}

Here is a gif of it showing the two pages with the text:

gif showing text added to both pages


Post a Comment for "Add A Page Break In Html For PDFKit In Swift"