Bazinga
Bazinga

Reputation: 2466

Building and Compiling Error

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.

enter image description here

Thanks for the help. Any help would be much appreciated.

Upvotes: 0

Views: 81

Answers (2)

Vincent
Vincent

Reputation: 4409

It looks like that ScratchableView is not included in the link list.

  • Press project-target in file list (your APP project name in the file list)
  • Targets set to: Photoslot (your APP name)
  • The Tab: Build Phases
  • Open: Copy Bundle Resources Your file should be included here. If not press + to add. When the file is listed in red, it is missing/wrong. Remove it (-) and add again

Upvotes: 1

Vlad
Vlad

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

Related Questions