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

时间:2015-07-09 23:38:18

标签: ios xcode parse-platform xcode6 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视图: enter image description here

我正在使用Cocoapods 0.38.0.beta.2

感谢。

2 个答案:

答案 0 :(得分:6)

我今天将XCode更新为6.4后遇到了这个问题。 查看搜索框架显示在XCode更新后它们是空的。 因此,更改项目中的框架搜索路径 - >构建设置 - >框架搜索路径和添加$(SRCROOT)(递归) 这为我解决了这个问题。

答案 1 :(得分:4)

所以问题发生在podspec文件中。 Parse团队为Parse,ParseFacebookUtils,ParseCrashReporting将其更新为1.7.5.3,现在一切都很好。

现在只需运行pod update即可解决问题。

Here's the original post on official developers group.