0

我已经能够在 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];
4

1 回答 1

0

我想通了-定义枚举后我忘记了分号。

如果这出现在其他人身上,请先查看代码以确保它是有效的。

于 2013-04-19T22:54:27.013 回答