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

2019-04-05 08:55发布

问题:

I tried everything I could imagine to fix this issue... Please help!

After updating to Xcode 6.4 and Parse SDK 1.7.5 I'm getting build error:

"Parse/Parse.h file not found"

Here's my Podfile:

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

All Cocoapods dependencies except Parse are working great. Here's .xcworkspace view:

I'm using Cocoapods 0.38.0.beta.2

Thanks.

回答1:

I ran into this issue after updating XCode to 6.4 today. Taking a look at the Search Frameworks showed that they were empty after the XCode update. So change the Framework Search Paths in Project -> Build Settings -> Framework Search Paths and Add $(SRCROOT) (recursive) That fixed it for me.



回答2:

So the problem was in podspec file. Parse team updated it to 1.7.5.3 for Parse, ParseFacebookUtils, ParseCrashReporting and now everything works great.

Now simply running pod update should fix the issue.

Here's the original post on official developers group.