This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /guides/ios/knowledge-base/how-do-i-remove-the-sign-arrow-from-the-signature-form-field.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. How do I remove the Sign arrow from the signature form field?

To disable showing all “Sign” overlays for a document, you can use the drawSignHereOverlay API to update the render options before presenting a document:

document.updateRenderOptions(for: .all) {
$0.drawSignHereOverlay = false
}