Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从其他项目中获取 InfoViewControlelr.h .m .xib 文件,添加到我在 xcode 4 中拥有的现有项目中,但是当我构建项目时,它给出了以下错误
Undefined symbols for architecture i386: "_OBJC_CLASS_$_InfoViewController", referenced from:
您必须通知编译器来编译您InfoViewController添加的内容。您可以按以下方式执行此操作。请转到 Project 的 TARGET 并选择 Build Phases 选项卡。并将您的添加InfoViewController.m到编译源部分。
InfoViewController
InfoViewController.m
最后你可以重建你的项目。
这可能是由于在导入文件时忽略选择“添加到目标”,或者由于您正在导入的框架与实际导入到项目中的框架之间的差异造成的。