Class is not key value coding-compliant [duplicate]

you probably based your code on a web tutorial such as the one at http://www.e-string.com/content/custom-uitableviewcells-interface-builder or http://www.icodeblog.com/2009/05/24/custom-uitableviewcell-using-interface-builder/

Your problem (and I’m 99% sure this is where you tripped up, I just made the same mistake) is that in interface builder you linked your IBOutlets from File’s Owner when you should link them from the cell view. This is why you are getting the errors.

Leave a Comment