views:

52

answers:

1

So I'm getting this error on build:

alt text

This obviously has something to do with linking, but I just can't get what exactly. I have 2 targets, and I only get this error when I compile for the device target (other target is for simulator use). I compared the linking settings for each target and everything seems fine.

InfoView is the last class I added to the project.

+2  A: 

Well if you're getting that error, you most likely just forgot to include that file in the target. Get info on the file that's giving the error (in this case InfoView.m) > targets > check the appropriate targets.

alt text

Sam V