我正在创建一个静态库,我想制作一个podspec,以便它也可以包含在其他项目中.为了生成适当的pod结构,我使用了一个命令:
pod lib create <library_name>
它产生了以下结构
- .podspec
- CHANGELOG.md
- Classes
- Project
- README.md
- Rakefile
- LICENSE
我在“projects”目录中创建了一个新的Xcode项目.我还在项目中添加了两个名为Test1.h和Test2.h的文件,并将它们保存在classes目录中.另外,我添加了标题搜索路径变量到xCode项目设置,“../ Class /”所以类和&编译器可以看到其他目录中的标头.
(有没有办法在Xcode中创建一个组,以便添加所有类,转到Classes目录,编译器可以自动查看它们?)
所以现在看起来像这样
- .podspec
- CHANGELOG.md
- Classes
- Test1.h
- Test2.m
- Project
- (folder)
- .xcodeproj
- Tests
- Podfile
- README.md
- Rakefile
- LICENSE
s.source_files = ‘Classes/*.{h,m}’
但是当我跑步时:
pod spec lint .podspec
我收到以下错误:
- ERROR | The
source_files
pattern did not match any file.Analyzed 1 podspec.
[!] The spec did not pass validation.
这是什么问题?我被困在这几个小时.