“GooglePlus/GooglePlus.h file not found” when tryi

2019-01-19 14:28发布

I get the error

GooglePlus/GooglePlus.h file not found

when I try to build the project. I just added the Google Plus framework into the project, and after that, I tried to import the framework in the app delegate.m file, but I’m just getting this error.

标签: ios xcode4.6
7条回答
手持菜刀,她持情操
2楼-- · 2019-01-19 14:45

One thing which I was missing adding -ObjC in linker flag , but it did not removed the error. Then I removed #import <GooglePlus/GooglePlus.h> from .pch file and added into my ViewController.h. It worked.

查看更多
倾城 Initia
3楼-- · 2019-01-19 14:47

Drag and Drop the google-plus-ios-sdk-1.7.1 folder into Framework search path in Build Settings.

Its works fine for me.

查看更多
成全新的幸福
4楼-- · 2019-01-19 14:49

I had the same problem, under "Build Settings > Search Path > Framework Search Paths" i had

$(inherited)          non-recursive
$(PROJECT_DIR)/My     non-recursive
Project/Frameworks    non-recursive

i think spaces are breaking the directory path changing it to $(PROJECT_DIR)/"My Project"/Frameworks solved my problem..

Take note that My Project is my project name, Frameworks is where my GooglePlus.bundle & .framework, in case yours contains spaces, adding quotation marks corrects it.. for example: $(PROJECT_DIR)/"My Project"/"Google Frameworks".

查看更多
家丑人穷心不美
5楼-- · 2019-01-19 14:55

I think you have to remove current framework and bundle for Google plus and then download the latest one framework for Google plus from https://developers.google.com/+/mobile/ios/sdk/google-plus-ios-sdk-1.5.1.zip & add them from project's Build_Settings>Build_Phases.

This way i have solved my problem, may be u too can get it.

Thanks K.D

查看更多
别忘想泡老子
6楼-- · 2019-01-19 15:01

Drug&Drop needed framework from Pods/Frameworks of your workspace to YourProject/Frameworks and select "Directory reference"

查看更多
聊天终结者
7楼-- · 2019-01-19 15:03

I had the same problem and what got it fixed was removing the spaces from the names of parent folder(s) of the framework. With spaces in the names of parent folder(s), Xcode will show multiple directories in "Framework Search Paths".

And sorry, I could not add it as a comment as I don't have enough reputation.

查看更多
登录 后发表回答