Halpo
Halpo

Reputation: 3134

New to cocoapods - I can't seem to import libraries downloaded with cocoapods

the pods install completes successfully, but when I open the workspace, XCode doesn't seem to be autocompleting the .h files' names when I import (also does not compile). As if the files are not there. It will autocomplete if I start to type them in <....>, but it still won't compile the new libraries

screenshot (FBShimmering.h)
(source: paulhalp.in)

Upvotes: 0

Views: 256

Answers (1)

jervine10
jervine10

Reputation: 3077

Try:

#import <FBShimmer/FBShimmer.h>

You should also get autocomplete with this.

Upvotes: 1

Related Questions