我使用xcode4开发基础地图应用,
我设置了一个区域使用MKCoordinateRegionMakeWithDistance
,如下所示:
self->map.hidden=NO;
CLLocationCoordinate2D loc = CLLocationCoordinate2DMake([[NSNumber numberWithFloat:34.923964] doubleValue],[[NSNumber numberWithFloat:-120.219558] doubleValue]);
NSLog(@"%f",[[NSNumber numberWithFloat:34.923964] doubleValue]);
MKCoordinateRegion reg = MKCoordinateRegionMakeWithDistance(loc,[[NSNumber numberWithFloat:1000] doubleValue],[[NSNumber numberWithFloat:1000] doubleValue]);
self->map.region = reg;
当我试图对我写的东西进行测试时,我得到了这样的信息:
Undefined symbols for architecture armv7:
"_CLLocationCoordinate2DMake", referenced from:
-[MapViewController viewDidAppear:] in MapViewController.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
该消息是什么意思?
答案 0 :(得分:11)
这可能是一个愚蠢的问题,但您是否在项目中包含了CoreLocation框架?
答案 1 :(得分:1)
没有为arm7找到CoreLocation的库。可能是损坏的Xcode安装。我建议删除它,然后重新安装干净。