每当我添加openflow库并执行时,都会发生此错误
Undefined symbols:
"_CATransform3DIdentity", referenced from:
_CATransform3DIdentity$non_lazy_ptr in AFOpenFlowView.o
(maybe you meant: _CATransform3DIdentity$non_lazy_ptr)
"_CATransform3DRotate", referenced from:
-[AFOpenFlowView(hidden) setUpInitialState] in AFOpenFlowView.o
-[AFOpenFlowView(hidden) setUpInitialState] in AFOpenFlowView.o
ld: symbol(s) not found
collect2: ld returned 1 exit status有谁知道这件事吗?
发布于 2011-05-09 22:09:07
您需要将"QuartzCore“框架添加到您的应用程序中。您正在使用的库可能需要此框架,因此您的应用程序需要导入此框架才能进行编译。
发布于 2011-05-09 22:07:49
看起来您需要将QuartzCore框架添加到项目中。参见this question for Xcode 3.2或this question for Xcode4。
https://stackoverflow.com/questions/5937916
复制相似问题