I started a new project in Xcode by duplicating an existing folder, because my new application will have many common functions with the old one.
The problem is that the new application will not use the structure that I used in the old application. When I deleted the framework, of course, all the files, including this framework, caused errors.
Basically I want to disable all syntax checks, dependency checks, etc. For many files. I want Xcode to ignore these files, although they are in the project tree. Later, when I revise them, I will turn them on again manually. Thus, I can compile and test my small changes for errors, without correcting all the errors that they cause, in the “not fixed” files, which I will correct in the future.
I could remove them from the project tree, and then add them one by one when my work is done, but I do not want to do this because my project tree may get corrupted, and there really needs to be another way to do this.
I tried to delete these files from all target memberships, but that did not help.
ios xcode
Murat Ögat
source share