本文主要是介绍【错误处理】Undefined symbols for architecture arm64,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错
今天又遇到的一种情况,相同的报错,不一样的原因。
Undefined symbols for architecture arm64:"_OBJC_CLASS_$_Student", referenced from:objc-class-ref in ViewController.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
原因
.h里声明了一个@interface,但.m没有进行@implementation。
解决方法
.m里进行@implementation。
这篇关于【错误处理】Undefined symbols for architecture arm64的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!