Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am getting error that #import <TwitterKit/TwitterKit.h> not found in xcode

I installed these pod files.

pod 'TwitterKit'

pod 'TwitterCore'

When I try to import file i. e #import < TwitterKit/TwitterKit.h > it is showing not found error.

Why it is comming any idea ? anything going wrong or anything is pending to add ?

like image 376
Nikita Patil Avatar asked Dec 21 '17 06:12

Nikita Patil


2 Answers

Import it as a module using @import TwitterKit.

like image 50
Nikos M. Avatar answered Nov 03 '22 04:11

Nikos M.


Since version 3.3.0 TwitterKit has a new home on github, the installation page states that you need to import like this:

#import <TwitterKit/TWTRKit.h>

like image 16
MK_iOS Avatar answered Nov 03 '22 03:11

MK_iOS