Cocoapods: How do I handle an Objective-C subdependency in a Swift Project? -
i have project written in swift , need use library called foo, written in objective-c, , available via cocoapods. use foo, have specify in podfile, run pod install, , create bridging header imports foo/foo.h. i'm fine with.
but new version of foo has come out. , marks reactivecocoa dependency in podspec. when run pod install, project see , pulls down reactivecocoa well. issue foo not know reactivecocoa. line of code in foo references reactivecocoa class not compile.
how fix issue?
Comments
Post a Comment