Context
I am using Xcode 14
and utilize some SwiftUI
features that were added in macOS 13
, like String(localized:, defaultValue:)
and NavigationStack
/ NavigationSplitView
. However, I do get Compiler Errors
when doing so, it seems, that the Compiler
does not recognize those new things.
Extra argument 'defaultValue' in call
I checked the Deployment Target
in Project > Info
and Project > Build Settings
, in the latter, the Deployment Target
is set to macOS 13
, however, in the former, it is not possible to select macOS 13
from the dropdown menu.
Image
Question
How can I update the macOS Deployment Target
to macOS 13
, so that I can use the new features?