0

Is the QuartzCore framework bundled with UIKit framework in Xcode 5?

Earlier I had to manually add the framework and then do layer operations. That seems to have changed in the new version of Xcode.

Cœur
  • 32,421
  • 21
  • 173
  • 232
footyapps27
  • 3,746
  • 2
  • 22
  • 42

1 Answers1

0

If it's a new project, then it's probably using Objective-C code modules and linking the QuartzCore framework automatically. Modules are enabled by default for projects created in Xcode5

Check to see if it's enabled in your build settings: image

Clang documentation: http://clang.llvm.org/docs/Modules.html

See this related answer: https://stackoverflow.com/a/18947634/1144632

Community
  • 1
  • 1
danielbeard
  • 8,805
  • 3
  • 40
  • 58