ios - 在项目中使用两个静态库时,由于在两个静态库中编译的同名类而发生冲突
<p><p>我已经实现了两个具有以下结构的静态库:</p>
<h2>FirstStaticLibrary.a</h2>
<p>BaseClass.h</p>
<pre><code>@interface BaseClass
-some methods
@end
</code></pre>
<p>FirstDerivedClass.h</p>
<pre><code>@interface FirstDerivcedClass:BaseClass
{
}
-some methods
@end
</code></pre>
<h2>SecondStaticLibrary.a</h2>
<p>BaseClass.h</p>
<pre><code>@interface BaseClass
-some methods;
@end
</code></pre>
<p>SecondDerivedClass.h</p>
<pre><code>@interface SecondDerivedClass:BaseClass
{
}
-someMethods;
@end
</code></pre>
<p>以上两个静态库是有公共(public)文件BaseClass.h和BaseClass.m</p>
<p>这些静态库被添加到 TestApplication 项目中。</p>
<p>但是在运行应用程序时,它会抛出一个错误:</p>
<blockquote>
<p>Duplicate symbols found in /User/Library/Developer/Xcode/..E./FirstStaticLibrary.a (BaseClass.o) and /User/Library/Developer/Xcode/..E./SecondStaticLibrary.a (BaseClass.o) for architecture i386</p>
</blockquote>
<p>请提出解决此错误的方法。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>答案是您可能不想听到的,但您必须更改其中一个库的名称。假设您可以访问这两个库。</p></p>
<p style="font-size: 20px;">关于ios - 在项目中使用两个静态库时,由于在两个静态库中编译的同名类而发生冲突,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8517427/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8517427/
</a>
</p>
页:
[1]