我想公开地将我的代码共享给GitHub,但是AppKey必须是私有的。我如何才能在文件中隐藏appkey?
iOS编程,使用swift4,xcode 9
最佳答案
方案1
通常,人们会将密钥保存到一个名为secret.key
的文件或类似文件中,然后将该文件添加到.gitignore
中,这样它就不会保存在Git存储库中。
然后程序可以在运行时从文件中读取密钥。
选项2
可以将键存储在运行时读取的环境变量中。Here is a blog post by Robin Malhotra describing how to do so with Xcode