podfile /表示什么 如何指定依赖库的版本

依赖的写法两种:

  pod 'FMDB', :subspecs => ['SQLCipher']

  pod 'FMDB/SQLCipher'

指定依赖库版本的方法是单独指定

  pod 'SQLCipher', '3.4.2'

猜你喜欢

转载自blog.csdn.net/allanGold/article/details/86526117