In the project, Building Setting, I changed the product name from {Target Name} to something I like, but I found I cannot run the code in the simulator any more.
Anyone has similar experience before and how to solve it?
如果您更改了目标名称,则需要从模拟器中删除旧版本
最简单的做法是更改CFBundleDisplayName
Info.plist 文件中的 " " 属性,并保留您的 PRODUCT_NAME 设置原来的状态(即 " ${TARGET_NAME}
")。
我在我的 xcode 项目中尝试了这个来测试你的情况。是的你是对的。模拟器启动但项目没有运行,调试器也没有启动。最后我从模拟器中删除了我的旧应用程序并再次运行它。有效 :)
所以只需从模拟器中删除旧应用程序并再次运行它。这很简单。我不知道原因,但捆绑标识符可能与您的目标名称不匹配。