从iOS模拟器构建中排除框架

时间:2014-10-30 14:40:28

标签: ios ios-simulator

我在我的应用程序中使用第三方框架(metaioSDK),而i386版本中没有提供它。我希望能够将其从模拟器构建中排除,以便我可以在模拟器上测试与此框架无关的功能。我按照这个问题的答案:How to exclude frameworks in simulator builds in Xcode并确保在#if/#else/#endif中包含任何使用此框架的代码,如下所示:

// ARViewController.h
#import <UIKit/UIKit.h>
#if TARGET_IPHONE_SIMULATOR
@interface ARViewController : UIViewController {
}
@end

#else

#import <metaioSDK/MetaioCloudPlugin/MetaioCloudPluginViewController.h>

@interface ARViewController : MetaioCloudPluginViewController
{
    bool    m_useLocationAtStartup;
}
@end

#endif

同样,在模拟器上运行时,我已将相关的ARViewController.m文件更改为空白实现。

然而,Xcode似乎仍然想要链接这个框架的某些部分,我得到错误:

Undefined symbols for architecture i386:
  "_fopen$UNIX2003", referenced from:
      _BIO_new_file in metaioSDK(bss_file.o)
      _file_ctrl in metaioSDK(bss_file.o)
      _open_console in metaioSDK(ui_openssl.o)
  "_fputs$UNIX2003", referenced from:
      _write_string in metaioSDK(ui_openssl.o)
      _read_string in metaioSDK(ui_openssl.o)
  "_fwrite$UNIX2003", referenced from:
      _XrAQWOpNWyNOaebKZvBRbL in metaioSDK(pngwio.o)
      _file_write in metaioSDK(bss_file.o)
      _int_rsa_verify in metaioSDK(rsa_sign.o)
      _send_fp_chars in metaioSDK(a_strex.o)
      _write_fp in metaioSDK(b_dump.o)
      _read_string in metaioSDK(ui_openssl.o)
  "_nanosleep$UNIX2003", referenced from:
      boost::this_thread::hiden::sleep_for(timespec const&) in metaioSDK(thread.o)
      boost::this_thread::hiden::sleep_until(timespec const&) in metaioSDK(thread.o)
  "_strerror$UNIX2003", referenced from:
      _build_SYS_str_reasons in metaioSDK(err.o)
  "_strtod$UNIX2003", referenced from:
      _WWOVfTQLpCQpcac in metaioSDK(pngrutil.o)
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

除了将此框架标记为可选之外,我还缺少什么?

2 个答案:

答案 0 :(得分:3)

问题是您的第三方框架 DOES 包含i386版本,但i386版本是针对错误的SDK构建的。它是针对OS X SDK构建的,应该是针对iOS模拟器SDK构建的。向metaioSDK开发人员提交错误报告,以帮助他们修复错误。

答案 1 :(得分:1)

如果复制目标并从链接框架列表中删除框架,则可以使用此新目标构建模拟器。它只是“不知道我想要什么,做什么”,但它肯定会解决你的问题,并且这种关系将被明确标记。