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.
我的项目有一个私有框架,并且该私有框架必须与 XCODE 链接;意味着如果我对框架代码进行任何更改,它将自动反映到项目中使用的框架。我该怎么做?
我强烈建议您为您的私有框架维护一个单独的存储库(据我所知,它将用于不同的项目)。例如,如果您使用 git,只需将其作为子模块添加到您的项目中,然后从那里引用它。(仅使用相对路径!)。
这样,您可以在使用框架时不断增强框架,以便您可以提交修补程序、处理新功能并在处理项目时以非常自然的方式对其进行测试。