我正在做一个应用程序,我使用webservices wsdl2objc生成代码..
当我构建它时,我得到了很多错误,这些错误与libxml和xml相关,在你提到的用法说明中
Get info on the target and go to the build tab
Add "-lxml2" to the Other Linker Flags property
Add "-I/usr/include/libxml2" to the Other C Flags property
但是在构建选项卡中如果我尝试添加它没有得到添加我无法修复错误,我使用的是xcode 4.0.1
请告诉我如何添加 - | xml2和i hv从sdks / usr / include / libxml2添加了libxml2文件,并且我添加了CFNetowrk.frameworks
谢谢你
答案 0 :(得分:4)
在左窗格(也称为导航器)中选择项目(具有蓝色A图标)。在右侧,您将看到Info,Build设置等。
选择构建设置,其下方会有一个搜索栏。
在搜索栏中输入其他链接标记。您将看到显示的OtherLinker标志。
现在双击弹出的提示行。
现在点击+按钮,然后双击要添加的蓝色区域。
在搜索栏中输入其他C标志的方式相同
答案 1 :(得分:2)
您正在寻找-lxml2
,而不是-|xml2
。 “l”代表“图书馆”。