CocoaPods: Installing a library that contains an embedded framework
问题 When installing a library that contains an embedded framework, it seems that the framework needs to be linked to the application target manually. Is there any way this can be properly automated? Examples are: Dropbox-iOS-SDK Reveal-iOS-SDK NewRelicAgent 回答1: The framework search paths needs to contain the following (note the recursive setting): . . As far as I know, CocoaPods sets this up, so it must've been unset in the project(s) where this was occurring. 来源: https://stackoverflow.com