Xcode技巧:项目导入外部文件后编译运行出现Undefined symbols for architecture x86_64错误

时间:2023-01-22 21:03:37

在做QQ语音时出现一个问题

Xcode技巧:项目导入外部文件后编译运行出现Undefined symbols for architecture x86_64错误

后来发现是因为没有导入IMCore.framework的原因.


当我们在一个项目中想使用外部其他项目的一个类时,可以在项目中直接添加类文件到项目中。但是,在编译的时候出现了这样的错误:

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

这说明编译没有问题,连接的时候出错了,找不到导入的目标文件。

先看看是如何导入类文件吧。在项目文件夹上点右键,选择Add file to…

Xcode技巧:项目导入外部文件后编译运行出现Undefined symbols for architecture x86_64错误

Xcode添加文件到项目中

然后选择需要添加的文件,不过下面的第一个复选框一定要选择上:

Xcode技巧:项目导入外部文件后编译运行出现Undefined symbols for architecture x86_64错误

选择需要导入的文件

这里第一个Copy Items的复选框需要勾选,不然选择的就是导入一个引用,勾选后直接将文件导入项目中。

<iframe id="iframeu1595965_0" src="http://pos.baidu.com/acom?rdid=1595965&amp;dc=2&amp;di=u1595965&amp;dri=0&amp;dis=0&amp;dai=1&amp;ps=1111x108&amp;dcb=BAIDU_UNION_define&amp;dtm=BAIDU_DUP_SETJSONADSLOT&amp;dvi=0.0&amp;dci=-1&amp;dpt=none&amp;tsr=0&amp;tpr=1456758756536&amp;ti=Xcode%E6%8A%80%E5%B7%A7%EF%BC%9A%E9%A1%B9%E7%9B%AE%E5%AF%BC%E5%85%A5%E5%A4%96%E9%83%A8%E6%96%87%E4%BB%B6%E5%90%8E%E7%BC%96%E8%AF%91%E8%BF%90%E8%A1%8C%E5%87%BA%E7%8E%B0Undefined%20symbols%20for%20architecture%20x8&amp;ari=1&amp;dbv=2&amp;drs=1&amp;pcs=1072x705&amp;pss=1072x1203&amp;cfv=0&amp;cpl=5&amp;chi=1&amp;cce=true&amp;cec=UTF-8&amp;tlm=1456758756&amp;ltu=http%3A%2F%2Fwww.xcoder.cn%2F%3Fp%3D272&amp;ltr=https%3A%2F%2Fwww.baidu.com%2Flink%3Furl%3Dnqd5O2_t_ZujjCl_lVhhGsxM6QIwgl6AVkJ_T6rTwmgKmokqmM9ddFGaKlkiGKvm%26wd%3D%26eqid%3Df35e09780012151f0000000356d45eb6&amp;ecd=1&amp;psr=1280x800&amp;par=1244x777&amp;pis=-1x-1&amp;ccd=24&amp;cja=false&amp;cmi=7&amp;col=zh-CN&amp;cdo=-1&amp;tcn=1456758757&amp;qn=59eadc3ca72bd40e&amp;tt=1456758756171.370.1080.1084" width="336" height="280" align="center,center" vspace="0" hspace="0" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" allowtransparency="true" style="border-width: 0px; border-style: initial; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: bottom; max-width: 100%; display: none !important;"></iframe>

然后在main.m中使用:

//
// 
main.m
// 
ExportObject用法
//
// 
Created by Mr. Right on 13-9-24.
// 
Copyright (c) 2013年 XCoder Studio. All rights reserved.
//
 
#import
<Foundation/Foundation.h>
#import
"Person.h"
 
int main(int argc, const char * argv[])
{
 
    @autoreleasepool {
        Person * person = [[[Person alloc] initWithFirstName:@"Wang"
                                                    lastName:@"Xi"
                                                        type:1] autorelease];
    }
    return 0;
}

然后编译运行就出现了上面的错误了。是为什么呢?

遇到这种问题,首先想到的是导入文件编译环境发生了变化,所以先选择Product-Clean将项目缓存清理一下:

Xcode技巧:项目导入外部文件后编译运行出现Undefined symbols for architecture x86_64错误

Xcode清理项目缓存

但是这样做还是不行,那怎么办呢?我们应该这样做,看项目有没有编译导入的文件,在这个位置查看:

选择项目-Build Phases选项卡-Compile Sources

Xcode技巧:项目导入外部文件后编译运行出现Undefined symbols for architecture x86_64错误

Xcode查看项目编译项目

这里只有一个main.m,Person.m没有被编译,当然错误了,将Person.m添加进去就OK了。点击下面的”+”添加,注意只添加.m文件,不添加头文件!