Reputation: 3709
Basically I have all the .h and .m files under "Classes" directory as well as the "Classes" group. Then I regret on giving such a name, so I changed the directory to "src" using "mv" command line and then removed "Classes" group and dragged "src" back in. Then when i run my code, I got a sigabrt error immediately. Anyone knows why? I tried reopen xcode project, which doesn't fix it. Thanks a lot!
Upvotes: 1
Views: 832
Reputation: 7673
I had to do this once for 117 source files that I wanted to organize differently. Here is what I did:
Your project should then compile as before. There are other ways to achieve this, but I found this method to be the most efficient.
Upvotes: 4