Ios 建筑armv的未定义符号

Ios 建筑armv的未定义符号,ios,xcode,architecture,arm7,Ios,Xcode,Architecture,Arm7,我的应用程序有问题。我收到7个苹果Mach-O链接器错误。以下是错误: Undefined symbols for architecture armv7: "_OBJC_IVAR_$_SideSwipeTableViewController.sideSwipeCell", referenced from: -[ViewController touchUpInsideAction:] in ViewController.o "_OBJC_CLASS_$_SideSwipeTableVi

我的应用程序有问题。我收到7个苹果Mach-O链接器错误。以下是错误:

Undefined symbols for architecture armv7:
  "_OBJC_IVAR_$_SideSwipeTableViewController.sideSwipeCell", referenced from:
  -[ViewController touchUpInsideAction:] in ViewController.o
  "_OBJC_CLASS_$_SideSwipeTableViewController", referenced from:
  _OBJC_CLASS_$_ViewController in ViewController.o
  "_OBJC_METACLASS_$_SideSwipeTableViewController", referenced from:
  _OBJC_METACLASS_$_ViewController in ViewController.o
  "_OBJC_IVAR_$_SideSwipeTableViewController.tableView", referenced from:
  -[ViewController viewDidLoad] in ViewController.o
  -[ViewController touchUpInsideAction:] in ViewController.o
  "_OBJC_CLASS_$_SideSwipeTableViewCell", referenced from:
  objc-class-ref in ViewController.o
  "_OBJC_IVAR_$_SideSwipeTableViewController.sideSwipeView", referenced from:
  -[ViewController setupSideSwipeView] in ViewController.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这让我抓狂,我想把它修好。我一直在搜索Google、Bing和StackOverflow,虽然我确实发现了一些“架构armv7的未定义符号”问题,但没有一个对我有帮助

我使用的是Xcode 4.3.1。我正在运行OS X Lion 10.7.3。我正在使用运行iOS 5.1的iPhone测试该应用程序


谁能帮帮我吗?我将不胜感激!:)

这些链接器错误意味着名为SideSwipeTableViewController和SideSwipeTableViewCell的类没有编译,而是在代码的其他地方使用。如果这些类不是静态库的一部分,请确保它们处于项目的编译源代码构建阶段。如果它们是静态库的一部分,则表示您链接的库的版本可能是为不同的体系结构构建的。

这些链接器错误意味着称为SideSwipeTableViewController和SideSwipeTableViewCell的类没有编译,而是在代码的其他地方使用。如果这些类不是静态库的一部分,请确保它们处于项目的编译源代码构建阶段。如果它们是静态库的一部分,则表示您链接的库的版本可能是为不同的体系结构构建的。

谢谢!帮助很大。非常感谢!:)如果我理解正确,我已经为目标的集合构建了我的库,build active arch only=NO(可能我的设置不正确,我是新手。)但是我仍然得到了错误。据我所知,我已经完成了所有正确的步骤。你能更新一个要检查的项目清单吗?谢谢谢谢帮助很大。非常感谢!:)如果我理解正确,我已经为目标的集合构建了我的库,build active arch only=NO(可能我的设置不正确,我是新手。)但是我仍然得到了错误。据我所知,我已经完成了所有正确的步骤。你能更新一个要检查的项目清单吗?谢谢