Xcode can't see objects added via Cocoapods

邮差的信 提交于 2020-01-13 07:47:07

问题


I have a podfile defined with the following pods.

platform :ios, '8.0'
use_frameworks!

target 'LifeStream' do
pod 'SSKeychain'
pod 'LiveSDK'
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :branch => 'swift-2.0'
end

I installed the pods and opened up my workspace. I have found that any usage of Alamofire works fine, due to the Swift 2 version of it importing the project as a framework.

When I try to use SSKeychain classes however, I receive a

Use of unresolved identifier 'SSKeychain`

Same applies with any class I try to use in the LiveSDK.

I have a bridge header in my projects root directory, and the project is configured to use it.

#ifndef Header_h
#define Header_h

#import "SSKeychain/SSKeychain.h"
#import "LiveSDK/LiveConnectClient.h"

#endif /* Header_h */

if I change the #import from

#import "SSKeychain/SSKeychain.h"

to

#import "SSKeychain.h"

Xcode fails to compile because it can't find the file. So I assume that the bridge header is working, as the way my bridge header is built now does not generate any compiler errors caused by not finding the headers.

Bridge Header

Framework Search Paths

I have also added my project root directory to the framework search path.

Linked Frameworks

Lastly I have linked all of the frameworks to the project as well.

Am I missing something with my setup? I have not been able to get Cocoapods to work on my project for nearly a week now. I even created a brand new project thinking that mine was just messed up; which didn't change a thing. I don't know what to do from here in order to resolve this.

Edit

After doing some additional research, I found a blog post showing that you have to include your Pods directory in the User Header Search

A commenter also mentioned that if you are using the newer Cocoapods Frameworks support for Swift, then it will need to include the Frameworks/** search path. I've included both Pods/** and Frameworks/** but still have the same issue.

After some further reading, it's beginning to sound like this is a limitation of Cocoapods. From what I understand, you can't use libraries and frameworks together at the same time in a project.


回答1:


Once you use use_frameworks! in your Podfile, Objective-C Pods like SSKeychain also get build as frameworks.

The actual problem is that only module imports work in the bridging header when using frameworks. Also, you might want to get rid of the bridging header entirely, as it is unnecessary when using frameworks, they can be imported directly in Swift.




回答2:


To clarify what you should do to make it work:

  1. Be sure to have use_frameworks! in your Podfile
  2. It doesn't matter if you have a Bridging header or not. Leave it untouched
  3. In your SWIFT file just use import Podname

That's it, you're good to go. Of course it may happen that you need to clean your project or maybe delete the derived data folder. Build and you can use it.




回答3:


If you're not using any swift pods,

Try removing the use_frameworks! on your Podfile.

Run pod install on terminal.

Clean & Build !

I spent almost half an hour fixing it, I tried adding those paths on Search Paths or re-adding the bridging-header but the error was the same.

Therefore, in my case, bridging header file was not the problem, its on the Podfile .

I hope it helps!



来源:https://stackoverflow.com/questions/31103831/xcode-cant-see-objects-added-via-cocoapods

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!