views:

143

answers:

1

I'm trying to use CGBitmapContextCreate. According to Apple's documentation the ApplicationServices framework is required. When I went to add it, it wasn't in the list available (the latest version of Xcode changes things a bit), but I managed to find it manually in the Frameworks folder. However, I'm still getting "framework not found" bugs and a full blown error if I #import <ApplicationServices/ApplicationServices.h>

Forgive my noobness. Suggestions?

A: 

Looks like the documentation is Mac specific, and hasn't been fixed for the iPhone. The CoreGraphics framework (on both Mac and iPhone) will work.

duncanwilcox
Thank yeh very much~
nullArray