TodayViewController

时间:2017-01-08 13:36:30

标签: swift xcode cocoapods ios10-today-widget

我是一个额外的目标,它是今天的小部件。我试图为这个目标添加一些播放器,但我没有得到这样的模块' xxx'当我尝试导入一个模块时,就像它在我的主要目标上工作一样。这是我已经完成的事情,

podfile

target 'My-Project' do
    use_frameworks!
    pod 'SwiftyUserDefaults'
    pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
end

target 'My-Widget' do
    use_frameworks!
    pod 'SwiftyUserDefaults'
    pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
end

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['SWIFT_VERSION'] = '3.0'
        end
    end
end
    安装
  • pod但没有错误。
  • 由.xcworkspace
  • 打开的项目
  • pod --version是1.0.1
  • 我已清除派生数据,清理项目,重新打开项目并重建项目多次

我怎样才能让它发挥作用?

结果是 enter image description here

1 个答案:

答案 0 :(得分:1)

似乎cocoapods版本有点过时了。在某些情况下(特别是考虑到不断变化的swift,xcode和cocoapods),它可能会导致令人沮丧的后果。幸运的是,通过更新cocoapods很容易解决这个问题。