I get an error that #import <TwitterKit / TwitterKit.h> was not found in xcode

I installed these swap files.

pod 'TwitterKit'

pod 'TwitterCore'

When I try to import the i file. e #import <TwitterKit / TwitterKit.h> shows an error not found.

Why is this an idea? is something wrong or is something else not added?

+4
source share
3 answers

Import it as a module with @import TwitterKit.

+6
source

Starting with version 3.3.0, TwitterKit has a new home on github, the page indicates that you need to import like this:

#import <TwitterKit/TWTRKit.h>

+3
source

Xcode, Twitter.

0

Source: https://habr.com/ru/post/1691157/


All Articles