dev
dev

Reputation: 88

Xcode does not find plist although there is one

As I wanted to run my App, Xcode suddenly can not find the Info.plist. I´ve made another one and changed the Plist-location in the "Build Settings" area but does not work as well. Xcode says:

/* com.apple.ibtool.errors */ : error: The file “Info.plist” couldn’t be opened because there is no such file. Failure Reason: The file doesn’t exist. Underlying Errors: Description: The operation couldn’t be completed. No such file or directory Failure Reason: No such file or directory

Its the 5th beta of Xcode 7

Upvotes: 1

Views: 6824

Answers (2)

dev
dev

Reputation: 88

I solved it!

I choose the file Inspector of the storyboard and turned the Build for version to Development Target.

Storyboard -> File Inspector -> Builds For -> Project Development Target

I hope that solves your problems!

Upvotes: 0

Bannings
Bannings

Reputation: 10479

I think your plist path is incorrect. It will to be that:

enter image description here

rather than:

enter image description here

For example: my project name is "TestCustomNSButton" so the path will be:

enter image description here

Hope this have helped you!

Upvotes: 8

Related Questions