CocoaPods错误地安装了ReactiveSwift / ReactiveCocoa

时间:2018-01-15 12:33:16

标签: ios xcode cocoapods reactive-cocoa reactive-swift

我正在尝试在项目中安装ReactiveSwift / ReactiveCocoa并且没有运气。起初我对Xcode报告的关于我对ReactiveCocoa代码的尝试的奇怪错误感到困惑:

enter image description here

但是,进一步检查表明Xcode正在构建React,ReactiveSwift和ReactiveCocoa框架,但未能正确集成它们。

enter image description here

我的问题是:如何解决问题,以便Xcode正确地将所有内容放在一起?我的Podfile中找不到任何明显错误的内容。

project ‘CitiTakeHome.xcodeproj'

# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'

target 'CitiTakeHome' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for CitiTakeHome
# pod 'ReactiveSwift'
  pod 'ReactiveCocoa'

  target 'CitiTakeHomeTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'CitiTakeHomeUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

其他可能相关的信息:在MacOS High Sierra 10.13.2上运行的Xcode版本9.2(9C40b)。

知道出了什么问题吗?提前感谢任何人提供的任何帮助。

2 个答案:

答案 0 :(得分:0)

你已经注释掉了pod' ReactiveSwift'。取消注释这一行,一切都会好的。

答案 1 :(得分:0)

这是代码的样子:

enter image description here