skip to Main Content

After creating and deleting the objc file with the header, an error appeared, how can I fix it?

error build: Build input file cannot be found: ‘/Users/iiiivaska/Desktop/To-Do List/To-Do List/View/Cells/To-Do List-Bridging-Header.h’. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

2

Answers


  1. Seems like you have moved bridging file to other folder and Xcode compiler can not find it. Try to move this file in the top of your files tree

    Login or Signup to reply.
  2. Please, make sure from your path on build setting section.

    1- Go to target

    2- check deployment section => deployment assets to be "your path/Preview Content"

    3- check packaging section => Info.plist file to be "your path/Info.plist"

    4- signing section => Code Signing Entitlements to be "your path only"

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search