After I updated my Xcode
toXcode 8
.
I found out that if I import vendor framework header files in .pch
file. there will be a error. 'xxx' .h file not Found
Such as:
I want to import a framework named Umeng's header file.
So I write the codes below to my XXX-prefix.pch
#import <UMMobClick/MobClick.h>
But Error UMMobClick/MobClick.h file not found
appeared.
Any constriction of Xcode that prohibit importing vendor framework header files in .pch
file?