IOS & Objective C - 我如何解决此错误 "implicit declaration of function "class_getname“在 c99 中无效”?
IOS & Objective C - how can i resolve this error "implicit declaration of function "class_getname " is invalid in c99"?
实际上有两个错误,第一个是:
"implicit declaration of function "class_getname " 在 c99 中无效"
第二个是:
使用 'int'
类型的表达式初始化 'const char*' 的指针转换不兼容整数
我的方法是:
-(void) donneesrecoltees:(NSData *)donnees {
NSError *erreur;
NSNumber *lastMessage,*currentMessage;
//int i;
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
NSString *msg;
UIAlertView *alert;
NSDictionary *json=[NSJSONSerialization JSONObjectWithData:donnees options:0 error:&erreur];
// Check if it's the right class to avoid error stack
// this is the line that is causing the error
const char* className = class_getName([json class]);
NSString *myClass=[NSString stringWithFormat:@"%s",className];
....
}
关于如何解决这个问题的任何帮助?谢谢
你需要#import <objc/runtime.h>
实际上有两个错误,第一个是: "implicit declaration of function "class_getname " 在 c99 中无效"
第二个是: 使用 'int'
类型的表达式初始化 'const char*' 的指针转换不兼容整数我的方法是:
-(void) donneesrecoltees:(NSData *)donnees {
NSError *erreur;
NSNumber *lastMessage,*currentMessage;
//int i;
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
NSString *msg;
UIAlertView *alert;
NSDictionary *json=[NSJSONSerialization JSONObjectWithData:donnees options:0 error:&erreur];
// Check if it's the right class to avoid error stack
// this is the line that is causing the error
const char* className = class_getName([json class]);
NSString *myClass=[NSString stringWithFormat:@"%s",className];
....
}
关于如何解决这个问题的任何帮助?谢谢
你需要#import <objc/runtime.h>