---
title: "Customize document info on iOS | Nutrient SDK"
canonical_url: "https://www.nutrient.io/guides/ios/customizing-the-interface/customizing-the-available-document-information/"
md_url: "https://www.nutrient.io/guides/ios/customizing-the-interface/customizing-the-available-document-information.md"
last_updated: "2026-05-30T02:20:01.309Z"
description: "Customize the document information displayed to users on iOS by adjusting the availableControllerOptions property in the DocumentInfoCoordinator."
---

# Customize the document information on iOS

You can pick and choose which document-related information you want to make available to your users by customizing the `availableControllerOptions` property on the [`DocumentInfoCoordinator`](https://www.nutrient.io/api/ios/documentation/pspdfkitui/documentinfocoordinator/availablecontrolleroptions) object associated with your `PDFViewController` instance:

### SWIFT

```swift

pdfController.documentInfoCoordinator.availableControllerOptions = [.outline,.annotations]

```

### OBJECTIVE-C

```objc

pdfController.documentInfoCoordinator.availableControllerOptions = @[PSPDFDocumentInfoOptionOutline, PSPDFDocumentInfoOptionAnnotations];

```

The example above would make the document information that’s displayed to the user only show the document outline and the annotations list view controller.

The default value for `availableControllerOptions` includes all applicable options for the current document. For example, even though the option array would include [`DocumentInfoOption.annotations`](https://www.nutrient.io/api/ios/documentation/pspdfkitui/documentinfooption/annotations), if the document does not contain any annotations, the annotations tab will not be shown to the user.

Refer to the [`DocumentInfoOption`](https://www.nutrient.io/api/ios/documentation/pspdfkitui/documentinfooption/outline) section of our API listings to learn more about the options available.
---

## Related pages

- [Edit PDF metadata on iOS](/guides/ios/customizing-pdf-pages/customizing-document-metadata.md)
- [Change the document title in PDF metadata on iOS](/guides/ios/customizing-the-interface/changing-the-document-title.md)

