【发布时间】:2015-06-22 02:34:59
【问题描述】:
我刚刚在 Xcode 中为我的 iPad 应用程序添加了 64 位支持。在更新之前,我能够存档应用程序而没有出现红色错误。在我在构建设置中添加arm64 后,出现 2 错误阻止存档:
*ld: warning: ignoring file /Users/****/Documents/mApp/****/Pixate.framework/Pixate, missing required architecture arm64 in file /Users/****/Documents/mApp/****/Pixate.framework/Pixate (3 slices)
Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_Pixate", referenced from:
objc-class-ref in main.o
objc-class-ref in BaseView.o
objc-class-ref in BaseViewController.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)*
我已经检查了框架,它显示在项目的框架中。
我目前使用的是 Xcode 版本 6.3.2 (6D2105)
【问题讨论】:
-
你试过清理和构建吗?
-
是的,我试过了,我也删除了派生数据。
标签: ios objective-c xcode