Hi, I am a beginner in RX… spent the last two hours to get it works on the new Xcode 9.
And finally, I managed to get it works with Cocoapods.
The Podfile:
platform :ios, '11.0'
use_frameworks!
target 'YOURAPP' do
pod 'RxSwift', :git => 'https://github.com/ReactiveX/RxSwift.git', :tag => '4.0.0-beta.1'
pod 'RxCocoa', :git => 'https://github.com/ReactiveX/RxSwift.git', :tag => '4.0.0-beta.1'
end
And then run pod install
as usual.
And then you can open the generated YOURAPP.xcworkspace
from your project folder.