1

I have a perfect functioning app in xcode 4.

As soon as I add the frameworks and the shk folder to my project I get 6 errors, first of them;

#import </usr/include/objc/objc-class.h> file not found

I tried this

iPhone - ShareKit , SHK.m giving the compiler error for FileNot Found

but still the same...

Regards Mirza

Community
  • 1
  • 1
mirzahat
  • 1,025
  • 2
  • 10
  • 19

1 Answers1

5

Are you using xcode 4.3? if yes then just replace

#import </usr/include/objc/objc-class.h>

this with

#import <objc/runtime.h>
Saiful
  • 1,891
  • 1
  • 15
  • 39