I am trying to learn ReactiveCocoa and have a hard time getting started. I keep hitting minor bumps as API and tutorials seems to be outdated quickly. Maybe I have the wrong imp
The reactive cocoa native NoError was removed in 4.0.1 in favour of antitypicals implementation in Result (adds NoError to Result, see this). See e.g. issue #2704
We can see this explicitly used in the source files, e.g.
import enum Result.NoError in Property.swift.Hence, you probably need to include (antitypicals) Result whenever you intend to use NoError. One suggested fix in the issue thread is
public typealias NoError = Result.NoError