Xcode 3.2 not recompiling changed files
Posted
by Jason
on Stack Overflow
See other posts from Stack Overflow
or by Jason
Published on 2010-06-16T03:02:24Z
Indexed on
2010/06/16
3:12 UTC
Read the original article
Hit count: 187
I've been programming a new iPhone application and everything has been chugging along fine, until this afternoon when I noticed that any changes I was making were not being reflected in the actual app! Even code that throws errors isn't getting picked up by the compiler.
To get around this, I have taken to the following procedure:
- Finish making my edits, and add code to the file which will always throw a compiler error.
- Right-click the file I have just edited, and hit "Compile" to just compile that one file; it will throw the error.
- Remove the error-producing code, and again right-click and "Compile" the one file.
- Build the whole project
This is quite annoying, and I can't figure out why this would suddenly happen to my Xcode project. Any thoughts on what could be causing this, and how to fix it?
© Stack Overflow or respective owner