我是iOS的新手
现在我反击了一个问题
#define strncasecmp _strnicmp
它有一个警告:
implicit declaration of function '_strnicmp' is invalid in C99
也有错误:
Undefined symbols for architecture armv7:
"__strnicmp", referenced from:
_AVI_open_input_file in avilib.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
如何解决这个问题?
答案 0 :(得分:4)
很简单,你的C运行时没有函数_strnicmp
,它是Microsoft-specific function,而不是标准的C函数。
您应该删除#define
并使用strncasecmp
功能,因为strncasecmp
是POSIX function,iOS符合POSIX标准。