gpt4 book ai didi

ios - xcode 上架构 x86_64 错误的 undefined symbol

转载 作者:行者123 更新时间:2023-11-29 02:12:02 25 4
gpt4 key购买 nike

我有一个简单的项目,在我的基本 ViewController.m 上,我试图通过执行以下操作移动到另一个 UIViewController:

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
...
}

- (void)addAlarmBrick {
NewAlarmViewController *navc = [[NewAlarmViewController alloc] init];
[self presentViewController:navc animated:YES completion:nil];
}

我的项目中有 NewAlarmViewController,并且目标成员资格中列出了 .m 文件。

这是完整的错误消息:

Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_NewAlarmViewController", referenced from:
objc-class-ref in ViewController.o ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我在这里做错了什么?

编辑:

添加两个文件的设置:

.m文件:

.m

.h文件:

enter image description here

最佳答案

嗯,原来错误是没有将以下内容添加到相关文件中:

@implementation NewAlarmViewController


@end

我不知道为什么必须添加@implementation,但它必须是。

关于ios - xcode 上架构 x86_64 错误的 undefined symbol ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29183261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com