“File not found”, “linker command failed with exit code 1” in Xcode 4.5.1

后端 未结 10 1622
-上瘾入骨i
-上瘾入骨i 2020-12-08 02:25

Am developing an existing iOS application and I have to write unit test cases for this project. It is building and running in Simulator 6.0. Whenever I try to test t

10条回答
  •  萌比男神i
    2020-12-08 03:07

    Your linker is looking for a file at: /Users/Yuva/Library/Developer/Xcode/DerivedData/FlyApp-aexukpgtbathuadgxlnm/Build/Products/Debug-iphonesimulator/FlyApp.app/FlyApp

    Did you follow the path to ascertain if the file is there? Note that FlyApp.app is probably a package and you'll have to "see package contents" if you're viewing from the Finder. If it's not there, either 1) you need to build FlyApp.app first, or 2) you have something in your test code that depends on it being there, which can't be determined from your question.

提交回复
热议问题