标签:
开发中常见错误和警告总结(三十八)
duplicate symbol
错误:
ld: duplicate symbol _OBJC_CLASS_$_************ in ****************
第一种:可能性是你的项目的不同group里有着相同名称的类
解决办法:删除一个或者改变名字就可以了
第二种:就suck了:
You could also get this error if you mistakenly let XCode‘s auto-complete for #import statements specify the ‘.m" file for the ‘duplicate‘ class instead of the ‘.h‘.
xcode的自动完成特性,在你导入头文件的时候,将".h"补成了".m"
解决办法:改成.h就可以
iOS开发——错误总结篇&开发中常见错误和警告总结(三十八)
标签:
原文地址:http://www.cnblogs.com/iCocos/p/4821470.html