2016-08-22 47 views
0
but had error:"Expected unqualified-id" in NSObjCRuntime.h 

爲NSLog的什麼時候發佈出現 「預期不合格-ID」,我在 「prefixHeader.pch」添加 「的NSLog」 在NSObjCRuntime.h

#ifndef __OPTIMIZE__ 

#define NSLog(...) NSLog(__VA_ARGS__) //avoid nslog when release 
#else 
# define NSLog(...) {} 
#endif 

回答

0

添加的代碼添加這些代碼,OK!

#ifdef __OBJC__ 

#import <Foundation/Foundation.h> 

#endif