For the More Curious: Build Phases, Compiler Errors, and Linker Errors

Building an application in Xcode takes several steps. We call these steps build phases, and you saw them earlier in this chapter when you were adding the Core Location framework to the Whereami target (Figure 4.1). Here is what each build phase does:

Compile Sources
This build phase contains the source code files that are compiled when this target is built. By default, any time you add a source code file to a project, it is added to this build phase.
Link Binary With Libraries
After your source code has been compiled, it is linked with the frameworks (libraries). This allows your code to use classes from these frameworks.
Copy Bundle Resources
After your code is compiled and ...

Get iOS Programming: The Big Nerd Ranch Guide, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.