RestKit 在存档模式下中断构建 - Xcode 8

RestKit breaks build in archive mode - Xcode 8

我正在使用 Xcode 8.2.1 和 CocoaPods 1.1.1。我有一个使用 RestKit 0.27 的 iOS 应用程序,带有 Objective-C 和 Swift 3 代码。一切都在模拟器和设备上完美地构建和工作,但项目在归档分发时无法编译:

/Users/***/MyProject-Bridging-Header.h:16:9: note: in file included from /Users/***/MyProject-Bridging-Header.h:16:
#import "CustomRKObjectRequestOperation.h"
        ^
/Users/***/Services/CustomRKObjectRequestOperation.h:10:9: error: 'RestKit/RestKit.h' file not found
#import <RestKit/RestKit.h>
        ^
<unknown>:0: error: failed to import bridging header '/***/MyProject-Bridging-Header.h'

我在这里发现了一个类似的问题:https://forums.developer.apple.com/message/79355#79355,但建议的修复不起作用,可能是因为它适用于 Xcode 7.1.

原来 FRAMEWORK_SEARCH_PATHS 在发布配置中没有任何对任何 Pods 框架的引用。现在一切正常,与 RestKit 无关。