问题导入Kingfisher librabry - Swift 3 Xcode 8.1

时间:2016-11-01 13:36:15

标签: swift xcode firebase kingfisher

我最近决定将Kingfisher导入我的项目,我使用CocoaPods跟随the installation guide。一切顺利,直到我运行项目并说

  

没有这样的模块'翠鸟'

我还将Firebase添加到我的库中,并且没有任何错误让我感到困惑。

这是podfile

target 'Ego1' do

  use_frameworks!


pod 'Firebase'
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
pod 'Kingfisher', '~> 3.0'

  target 'Ego1Tests' do
    inherit! :search_paths

  end

  target 'Ego1UITests' do
    inherit! :search_paths

  end

end

这是我在View控制器中导入的内容

import UIKit
import Firebase
import FirebaseStorage
import Kingfisher //error

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:2)

尝试将您的Podfile更改为: -

target 'Ego1' do

  use_frameworks!

    pod 'Firebase'
    pod 'Firebase/Database'
    pod 'Firebase/Auth'
    pod 'Firebase/Storage'
    pod 'Kingfisher', '~> 3.0'

end

然后: -

  • 清理项目(CMD + OPTION + SHIFT + K)
  • 删除衍生数据。
  • <强>重建