Why does Mac Catalyst never displays a backButtonTitle of navigationItem?

When we run the same navigation style app on iOS and Mac Catalyst, the navigation bar displays the back button title only on iOS as configured.

However, on Mac Catalyst, the back button title is always missing, regardless of the configuration.

navigationItem.title = "Home" // this will display on iOS only, not on Catalyst

or

navigationItem.title = "Home"
navigationItem.backButtonDisplayMode = .default
navigationItem.backButtonTitle = "Hello" // this will display on iOS only, not on Catalyst

Replies

Can you post a screenshot of what you are seeing as well as the iOS SDK you are using and the macOS version your running on?

Sure, iOS SDK: 16.0 macOS Version Ventura 13.2.1 (22D68)

iOS:

Mac Catalyst: