今天开始,收集自己写代码中遇见的错误。
Undefined symbols for architecture x86_64: ...
arm64错误。Build Settings ->Valid Architectures 去掉arm64即可。
strcpy(temp, (char *)ether_nota(LLADDR(sdl)));在iOS 7.1之后会报C99错误(Implicit declaration of function 'ether_nota' is invalid in C99)
修复:
char *ether_nota=LLADDR(sdl);
strcpy(temp, ether_nota);
3030

被折叠的 条评论
为什么被折叠?



