Home > database >  build input file cannot be found {PATH} did you forget to declare this file as an output. Xcode
build input file cannot be found {PATH} did you forget to declare this file as an output. Xcode

Time:10-06

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?

CodePudding user response:

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

  • Related