Reputation: 23
On building an App, I have received the following error:
Code Sign error: The file "YES" couldn't be opened because there is no such file.: (null)
Steps that I have already taken to solve the issue:
See the picture below.
I don't know why this error is occurring and how can I fix it?
Further info, I am using Xcode Version 7.3.3 on Mac OS Version El Captain. I am developing for iOS Version IOS 9.3
Upvotes: 2
Views: 222
Reputation: 1750
You might have provided the "YES" as filename OR "YES" as value anywhere in your project. This is not allowed since it is pre-reserved word.
So you need to have different name/value in your project.
Upvotes: 1
Reputation: 11807
Yes
is a reserved word, try calling the class and file name YesFile
.
Upvotes: 0