iOS - file patterns: The `source_files` pattern did not match any file.

在建立自己的远程库的时候执行pod trunk push xxxxx.podspec命令遇到 file patterns: The source_files pattern did not match any file.报错,网上查找的原因都是千篇一律的说的路径和 s.source_files 设置的不一样导致的,没有说出怎么修改解决办法,各种尝试修改路径就是不行,快被这个问题玩疯了的感觉,,,,,,,,,,

下面说出最后的解决方案:

s.source_files  = "MGLoopScrollView/*.{h,m}"

另外还有一个修改路径
/Users/Library/Caches/CocoaPods/Pods/External/MGLoopScrollView/6caecc3e367ba2e8852334d3c51e1214-f25d4这个文件夹有LICENSE文件,在这个位置创建文件MGLoopScrollView,把你创建的库文件具体内容导入到这里就OK了

部分截图内容,不影响操作


image.png

你可能感兴趣的:(iOS - file patterns: The `source_files` pattern did not match any file.)