ios - 为文件添加前缀以避免外部框架之间的符号冲突
<p><p>我在我的 IOS 代码中使用了两个外部框架。两个框架在内部都使用 <code>PLCrashReoprter</code> 框架,因此我得到了重复的符号错误。</p>
<p>现在框架之一,即崩溃报告框架提供了为文件名/符号添加前缀的规定。下面是在nameSpace.h中添加前缀的代码:</p>
<hr/>
<pre><code>#define PLCRASHREPORTER_PREFIX AcmeCo
#ifdef PLCRASHREPORTER_PREFIX
// We need two extra layers of indirection to make CPP substitute
// the PLCRASHREPORTER_PREFIX define.
#define PLNS_impl2(prefix, symbol) prefix ## symbol
#define PLNS_impl(prefix, symbol) PLNS_impl2(prefix, symbol)
#define PLNS(symbol) PLNS_impl(PLCRASHREPORTER_PREFIX, symbol)
#define PLCrashMachExceptionServer PLNS(PLCrashMachExceptionServer)
#define PLCrashReport PLNS(PLCrashReport)
#define PLCrashReportApplicationInfo PLNS(PLCrashReportApplicationInfo)
#define PLCrashReportBinaryImageInfo PLNS(PLCrashReportBinaryImageInfo)
#define PLCrashReportExceptionInfo PLNS(PLCrashReportExceptionInfo)
</code></pre>
<hr/>
<p>现在错误“<code>来自 Apple Mach-O Linker Error</code>”</p>
<pre><code>Undefined symbols for architecture i386:
"_OBJC_CLASS_$_AcmeCoPLCrashReport", referenced from:
objc-class-ref in CrashReporter.o
</code></pre>
<p>我已在所有包含文件上方添加了 <code>nameSpace.h</code> 文件。</p>
<p>请指导我尝试所有可能的事情,但没有用。
提前致谢!!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要使用相同的宏定义重新编译相应的框架(所有 .c 文件),以便它导出并使用修改后的符号名称。</p></p>
<p style="font-size: 20px;">关于ios - 为文件添加前缀以避免外部框架之间的符号冲突,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26734638/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26734638/
</a>
</p>
页:
[1]