升级到Cocoapods 0.38之后版本无法使用库未找到

我刚刚升级了Cocoapods并运行了pod安装。做一个硬清理并生成后,我发现了以下错误:升级到Cocoapods 0.38之后版本无法使用库未找到

ld: library not found for -lPods-HHRouter clang: error: 

linker command failed with exit code 1 (use -v to see invocation)

我试着删除每个参考HHRouter和拉动吊舱。它继续给我一个关于另一个吊舱的错误。

Here is what my podfile looks like: 

platform :ios, '8.0'

# ignore all warnings from all pods

inhibit_all_warnings!

pod 'JDStatusBarNotification'

pod 'HHRouter', '~> 0.1'

pod 'ViewDeck', '2.2.11'

pod 'IQKeyboardManager'

pod 'MagicalRecord'

pod 'RSKImageCropper', '1.0.0'

pod 'UICollectionViewLeftAlignedLayout'

pod 'FLAnimatedImage', '~> 1.0'

pod 'CRToast', '~> 0.0.7'

pod 'SDWebImage', '~>3.7'

我是否缺少任何东西?

回答:

我删除了其他链接器标志背后的所有设置,除了$(继承)以外,它很顺利。

以上是 升级到Cocoapods 0.38之后版本无法使用库未找到 的全部内容, 来源链接: utcz.com/qa/263444.html

回到顶部