2

I'm trying to import my bridging header file but it does not work, I have used all the solution introduced here Failed to import bridging header

but nothing worked for me.

I'm trying to import this library from github, can someone please help

https://github.com/nst/STTwitter

this is the error

       ^
/Users/aftheer/Downloads/STTwitter-master 5/STTwitter/STHTTPRequest+STTwitter.h:9:9: error: 'STHTTPRequest.h' file not found
#import "STHTTPRequest.h"
        ^
<unknown>:0: error: failed to import bridging header '/Users/aftheer/Desktop/twitterApp/twitterApp/twitterApp-Bridging-Header.h'
Christophe
  • 68,716
  • 7
  • 72
  • 138
Afnan Humdan
  • 195
  • 3
  • 12

1 Answers1

4
#import <STTwitter/STTwitter.h>

You have to use "<", ">", and the framework-name. This one worked for GoogleSignIn:

#import <GoogleSignIn/GoogleSignIn.h>
M. Kremer
  • 679
  • 6
  • 24