作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序有问题。我收到 7 个 Apple 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)
最佳答案
这些链接器错误意味着名为 SideSwipeTableViewController 和 SideSwipeTableViewCell 的类未编译,而是在代码的其他地方使用。如果这些不是属于静态库的类,请确保它们处于项目的编译源构建阶段。如果它们是静态库的一部分,则意味着您要链接的库版本可能是为不同的体系结构构建的。
关于ios - 架构 armv 的 undefined symbol ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9848350/
我的应用程序有问题。我收到 7 个 Apple Mach-O 链接器错误。以下是错误: Undefined symbols for architecture armv7: "_OBJC_IVAR_
我是一名优秀的程序员,十分优秀!