Reputation: 15
I have an iOS app project with two targets.
I currently have a single Settings.bundle for both targets, but I would like to be able to make one for each.
Is it even possible ?
Upvotes: 1
Views: 1610
Reputation: 38728
Yes it is.
Create a group in the Project Navigator
and name it something useful (perhaps after your first target) and drag your existing Settings.bundle
inside it. Set the Target Membership
of this Settings.bundle
to only be the the first target.
Now create a second group and call it something useful (perhaps after the name of your second target) and create a new Settings.bundle
inside it and set the Target Membership
of this Settings.bundle
to the second target.
Upvotes: 4