得到这个错误:
Undefined symbols for architecture i386:
"_drawGlossAndGradient", referenced from:
-[CustomHeader drawRect:] in CustomHeader.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
使用此代码:
drawGlossAndGradient(context, _coloredBoxRect, lightColor, darkColor);
这段代码也会发生类似的错误:
CGMutablePathRef arcPath = createArcPathFromBottomOfRect(arcRect, 4.0);
我从另一个工作正常的项目中导入了一些 .h 和 .m 文件。我将所有框架添加到新项目中,但它仍然会弹出此警告。我从来没有处理过这种错误,如果有人能帮助我,我将不胜感激。
谢谢你们!