Parse/Parse.h 文件在使用 Cocoapods 更新后未找到

Parse/Parse.h file not found after update with Cocoapods

我已尽我所能解决此问题...请帮忙!

更新到 Xcode 6.4 和 Parse SDK 1.7.5 后,我遇到构建错误:

"Parse/Parse.h file not found"

这是我的 Podfile:

target 'TV Admin' do
   pod 'RETableViewManager', '~> 1.6'
   pod 'SDNetworkActivityIndicator'
   pod 'Motif'
   pod 'Parse', '~> 1.7' 
end

除了 Parse 之外的所有 Cocoapods 依赖项都运行良好。 这是 .xcworkspace 视图:

我正在使用 Cocoapods 0.38.0.beta.2

谢谢。

我今天 XCode 更新到 6.4 后 运行 遇到了这个问题。 查看搜索框架表明它们在 XCode 更新后是空的。 因此,在 Project -> Build Settings -> Framework Search Paths 中更改 Framework Search Paths 并添加 $(SRCROOT) (递归) 这对我来说是固定的。

所以问题出在 podspec 文件中。 Parse 团队将其更新为 1.7.5.3,用于 Parse、ParseFacebookUtils、ParseCrashReporting,现在一切正常。

现在 运行 pod update 应该可以解决这个问题。

Here's the original post on official developers group.