Preface
If you haven’t agreed to the iPhone SDK License Agreement and NDA, please ignore this post, or Apple might hunt you down with their lawyers… and what a horrible death that would be.
Problem
I keep getting a build error when trying to subclass the UITableViewCell
Solution
Add the CoreGraphics.framework to your project
Resource
Found my answer at the MacRumors forums.
Related Posts
- ASP .NET & System.Threading.ThreadAbortException Error While doing some work today I started to run into a ThreadAbortException error. While debugging it spit back this error: Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack. I was really confused because everything seemed to be...
- SoapUI - a simple and raw Java SOAP Client There are times when you need a “raw” SOAP client to see the exact messages being sent to and from a Soap Sever. This is especially important for developers who are hosting a soap server for an API. In my example, PHP was throwing an error, but I couldn’t see...
- iPhone SDK - Learning the Basics by Removing the Touch After looking around for tutorials on the iPhone SDK, I’ve come to a revolutionary idea on learning the iPhone SDK: Learn it by programming in something else. The iPhone SDK, which is basically Cocoa Touch, is based of the Cocoa framework, which is used to make programs for the Mac...

Ah, thanks for documenting this! I was getting the same error message myself.
–Joao
Thanks. That helped me out