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

It’s possible to customize the appearance of the navigation bar shown above the crop user interface (UI) after taking a photo with the camera when adding an image annotation. This navigation bar is part of ImagePickerController, which is a subclass of UIImagePickerController, which is a subclass of UINavigationController. You can use UIAppearance to customize all instances of this class like this:

UINavigationBar.appearance(whenContainedInInstancesOf: [ImagePickerController.self]).barTintColor = UIColor.systemYellow

If you need to access a particular instance of the picker controller, you can use the PDFViewController delegate method, pdfViewController(_:shouldShow:options:animated:).

It’ll look like what’s shown in the following image.

Yellow navigation bar