CoreLocation架构i386的未定义符号

时间:2013-07-13 02:33:00

标签: ios objective-c

我收到以下错误:

Undefined symbols for architecture i386:
  "_CLLocationCoordinate2DMake", referenced from:
      -[ViewController loadView] in ViewController.o

我查看了以前的StackOverflow帖子,他们说要确保CoreLocation.framework在目标的构建阶段选项卡中的“Link Binary with Libraries”中,我做了。

1 个答案:

答案 0 :(得分:2)

您需要做两件事:

1)

确保您的目标成员身份已在 上检查CoreLocation.framework,如下所示:

target membership checked on

2)

确保您在ViewController.m文件的顶部完成了“#import <CoreLocation/CoreLocation.h>”。