Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个项目,我发现搜索路径中的内容在正确的搜索路径的开头和结尾有很多反斜杠。
它喜欢
\\\\\\\\\\\\\\"$(SRCROOT)/MY-SEARCH-PATH"\\\\\\\\\\\\\\\
那么这是一个错误还是我做错了什么?
看起来您在修改项目文件的项目上使用了某种工具(如 Cocoa Pods 或类似工具)。这个工具可能有一种错误的方式来解释构建设置并再次保存它们。
不知道,但是这是错误的,应该改回:
$(SRCROOT)/MY-SEARCH-PATH
(即没有反斜杠和双引号)