Reputation: 2466
Im having a problem compiling my project, below is the screenshot of the error where am I having a problem, I tried adding the needed frameworks and used CLEAN
function, but still not working.
Thanks for the help. Any help would be much appreciated.
Upvotes: 0
Views: 81
Reputation: 4409
It looks like that ScratchableView is not included in the link list.
Upvotes: 1
Reputation: 3366
You're encountering a referece error. Check your class OneSlotViewController.h/m for the include of ScratchableView.h which seems to be missing from your project. Another problem could be that ScratchableView class is not added to your target.
Upvotes: 0