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.
Podspec 文档说 preserve_path 用于“任何不应清理的文件(CocoaPods 默认清理所有文件)。”
“干净”是什么意思?
“清理”意味着它将删除应该“清理”的文件
例如,如果您有一个包含几个文件的目录
如果您只是指定源文件,*.{h,m}那么这些源文件将被添加到项目中,而 readme.md 和 other.txt 将被删除。如果您出于某种原因希望用户能够访问其中一个文件,您可以将其添加到其中,preserve_paths这样它就不会被删除。
*.{h,m}
preserve_paths