Reputation: 620
What is the difference between these two Deployment Targets?
Upvotes: 2
Views: 933
Reputation: 5148
There are project level and specific target level. Each project had one project target and more specific target. Each project-level build setting applies to all targets in the project unless explicitly overridden by the build settings for a specific target.
In top picture it's project target and it's setting will be inherited by specific target.
In bottom it's specific target, each change will only affect to this target. Not affect to another specific target or project target. You can add specific target much as you want, if not setting anything there's setting will inherit from project target.
read more about build setting Build_Settings
Upvotes: 2
Reputation: 1057
A target inherits the project build settings, but you can override any of the project settings by specifying different settings at the target level. There can be only one active target at a time; the Xcode scheme specifies the active target.
For further information you can read the documentation https://developer.apple.com/library/ios/featuredarticles/XcodeConcepts/Concept-Targets.html
Upvotes: 1