本文介绍了iPhone错误ld:/Users/Shared/PhoneGap/Frameworks/PhoneGap.framework/PhoneGap中的重复符号_SBJSONErrorDomain的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试创建Phonegap项目,其中我需要整合 ASIHTTPRequest 和JASON在参考,

I am try to create Phonegap project in which i need to integrate ASIHTTPRequest and JASON in reference,

发生以下错误

请帮助。

推荐答案

SBJSON有重复的符号。你可能链接到一个静态库,其中有编译的SBJSON源,如果你也编译SBJSON这可能会导致这个问题。尝试从您的编译源构建阶段删除SBJSON实现文件。

You have duplicate symbols for SBJSON. You are probably linking to a static library that has the compiled SBJSON sources in it, if you are also compiling SBJSON this could lead to this problem. Try removing the SBJSON implementation files from your Compile Sources build phase.

这篇关于iPhone错误ld:/Users/Shared/PhoneGap/Frameworks/PhoneGap.framework/PhoneGap中的重复符号_SBJSONErrorDomain的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 00:42