0

我需要帮助这是我的错误:

体系结构 i386 的未定义符号:“_OBJC_CLASS_$_GameCenterManager”,引用自:ViewController.o 中的 objc-class-ref ld:未找到体系结构 i386 的符号 clang:错误:链接器命令失败,退出代码为 1(使用 -v查看调用)

我正在尝试实现游戏中心。

这是我的 ViewController.h #import:

#import <GameKit/GameKit.h>
#import "GameCenterManager.h"

这是我的 ViewController.m #import:

#import "ViewController.h"
#import "AppSpecificValues.h"
#import "GameCenterManager.h"
4

3 回答 3

1

Xcode链接器错误?为我工作

转到您的项目,单击构建阶段,编译源,添加GameCenterManager.m到列表。

于 2013-03-05T10:09:53.123 回答
0

请务必将GameKit框架导入您的项目。也放在'头文件#import <GameKit/GameKit.h>的顶部。ViewController

于 2013-01-30T17:01:07.903 回答
0

你可以试试这个。转到您的项目构建设置并选择架构为 armv6 或 armv7。清理您的项目并再次构建。

于 2013-01-30T17:16:43.200 回答