This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /guides/ios/knowledge-base/customize-document-rendering.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. Customize PDF rendering on iOS | Nutrient

There are various rendering options to customize how a document is rendered and displayed onscreen. Take a look at all the different RenderOptions you can customize. To apply custom rendering options to your document, you can use the updateRenderOptions(for:with:) method on Document.

Customizing the appearance of forms

To customize the appearance of form elements in a document and style them in a different color, you can set interactiveFormFillColor on the relevant render options object.

To make form elements invisible but still editable, use something like this:

document.updateRenderOptions(for: .all) {
$0.interactiveFormFillColor = .clear
}