操作
1.打开插件的ios目录(注意:不是exmple目录下的ios)
2.新建一个目录 frameworks (ps:名称可随意,后面的路径一直即可)
3.将本地的第三方.framework 复制到上一步新建的目录里
4.打开 ios目录下的.podspec后缀文件
5.添加两句代码,下面以腾讯地图的为例
s.ios.vendored_frameworks = 'Frameworks/TencentLBS.framework'
s.vendored_frameworks = 'TencentLBS.framework'
代码解释:第一句为指定文件位置,第二句为引用framework
6.切到含有Podfile文件的目录运行 pod install