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.
我在 AppCode 中有一个现有项目,我想将其用作新项目的起点。所以我想制作一个项目的副本,然后重命名这个副本。有没有办法使用 AppCode 来做到这一点,还是我必须复制项目目录,然后手动重命名项目中所有文件和目录中项目名称的所有实例?
如果我右键单击项目主文件夹,然后单击重构,然后选择重命名,IDE 会显示一个错误对话框,指示您无法重命名项目主。我想这是一个错误。
我找不到在 AppCode 中可靠地重命名项目的方法。我最终重命名了项目目录并在终端中运行它:
find . -type f -name '*' -exec sed -i '' s/oldname/newname/ {} +
另一种方法是在 XCode 中打开项目并在那里重命名,然后使用 AppCode 再次打开它。