iOS:Compile error List(二)--Special

来源:互联网 发布:韩顺平java视频有用吗 编辑:程序博客网 时间:2024/05/16 02:42

Undefined symbols for architecture armXX:

The common causes for “Undefined symbols for architecture armv7” are:

  • You import a header and do not link against the correct library. This is common, especially for headers for libraries like QuartzCore since it is not included in projects by default. To resolve:

    1. Add the correct libraries in the Link Binary With Libraries section of the Build Phases.
    2. If you want to add a library outside of the default search path you can include the path in the Library Search Paths value in the Build Settings and add -l{library_name_without_lib_and_suffix} (eg. for libz.a use -lz) to the Other Linker Flags section of Build Settings.
  • You copy files into your project but forgot to check the target to add the files to. To resolve:

    1. Open the Build Phases for the correct target, expand Compile Sources and add the missing .m files. If this is your issue please upvote Cortex’s answer below as well.
  • You include a static library that is built for another architecture like i386, the simulator on your host machine. To resolve:

    1. If you have multiple library files from your libraries vendor to include in the project you need to include the one for the simulator (i386) and the one for the device (armv7 for example).
    2. Optionally, you could create a fat static library that contains both architectures.

总结来说,就是找不到某个“源文件或类库”(可能是合并项目xcodeproj解决冲突的时候可能会把新加进来的类这些信息丢失)。一般下文都会有类似这样提示:OBJC_CLASS$_youClass”, referenced from: objc-class-ref in otherClass.o。这个“otherClass.o”就是表示在哪个类中用到了这个源文件。

0 0
原创粉丝点击