我正在玩mapkit并设置一些注释。在我的代码中,我有: -
#define ANNOTATION_FIRST_TYPE 1
unsigned char annoType = ANNOTATION_FIRST_TYPE
annotationView = (MKPinAnnotationView *) [_mapView dequeueReusableAnnotationViewWithIdentifier:annoType ];
上面的最后一行抛出了错误Implicit conversion of 'char' to 'NSString *' is disallowed with ARC
,这很公平,我需要明确地将annoType更改为NSString。
但奇怪的是;如果换行(3)我改为: -
annotationView = (MKPinAnnotationView *) [_mapView dequeueReusableAnnotationViewWithIdentifier:**ANNOTATION_FIRST_TYPE**];
它编译没有错误? 问题是,ANNOTATION_FIRST_TYPE的类型是什么?
答案 0 :(得分:1)
ANNOTATION_FIRST_TYPE是一个整数。可以将整数隐式转换为C中的指针,但如果已启用警告,编译器应该已经警告过您。我不知道为什么这不是编译错误,可能只是疏忽。
您应该将ANNOTATION_FIRST_TYPE定义为NSString,例如
#define ANNOTATION_FIRST_TYPE @"1"