我已经能够在 XCode 中毫无问题地构建我的 iOS 应用程序,直到突然发生这种情况。在构建时,我在 CLErrorDomain.h- 中收到 2 个错误
Redefinition of 'NSString' as different kind of symbol
Expected ';' after top level declarator
CLErrorDomain.h 是框架的一部分,我无法编辑或更改它。这是重新定义 NSString 的代码行-
extern NSString *const kCLErrorDomain;
我重新启动了 XCode,清理了我的项目,但无论我是为模拟器还是设备构建,它仍然在构建时给我同样的错误。
我应该寻找什么信息来弄清楚如何解决这个问题?
更新
我重置为旧的提交,并一直在重建我所做的。在我添加此代码之前一直很好。这里是什么让 CLErrorDomain 给出错误?
mapView = [[MKMapView alloc] initWithFrame:CGRectMake(0,0,self.view.frame.size.width,200)];
mapView.delegate = self;
[mapView showsUserLocation];
HotspotAnnotation *annotation = [[HotspotAnnotation alloc] initWitHotspot:_hotspot];
[mapView addAnnotation:annotation];
CLLocationCoordinate2D zoomLocation = _hotspot.coordinates.coordinate;
MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(zoomLocation, 20000, 20000);
[mapView setRegion:viewRegion];