I have a project in which I use two build settings mainly. Unfortunately, something went wrong today. One compiles and the other does not. How to compare two build settings in Xcode to find out what are the differences?
(For those who are interested, the error I get in one assembly,
jump to case label crosses initialization of 'const char* selectorName'
if you know what this means, I will be very grateful)
You probably declare a variable inside the case without wrapping it all in parenthesis:
case foo: const char* selectorName; // ... break;
Must be:
case foo: { const char* selectorName; // ... break; }
The configuration of the project is stored in the directory (package):
YourAppName.xcodeproj
cd . .plist:
project.pbxproj username.pbxuser
diff . , , . , ? - ? , , {}?
Source: https://habr.com/ru/post/1746702/More articles:How to present a three-way relationship with JPA? - javaDeveloper collaboration with Google Wave - workflowHow can I compile an autotools project with statically related dependencies? - shared-librariesWhy won't the default management adapter mappings appear in Chrome or Safari? - asp.netAccess denies query start with linked table? - sqlHow can I encode four unsigned bytes (0-255) to and from the float using HLSL? - optimizationHow to extract comment from header file using python, perl or sed? - c ++Как использовать Mercurial? - version-controlСогласованная и простая группа IDE и инструментов для встроенного кода и unit test в С++? - eclipse-cdtProblem generating a project using Spring Roo - spring-rooAll Articles