嗨,我正在尝试使用MobileVLCKit。为此,我正在使用如下所示的可可垫
吊舱“MobileVLCKit”

pod 'MobileVLCKit'

然后我编译我的项目,它显示很多错误,下面是我的错误日志
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

"std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::find(wchar_t const*, unsigned long, unsigned long) const", referenced from:
  TagLib::String::find(TagLib::String const&, int) const in MobileVLCKit(tstring.cpp.o)
  TagLib::String::split(TagLib::String const&) const in MobileVLCKit(tstring.cpp.o)

  dash::mpd::BasicCMParser::parseCommonAttributesElements(dash::xml::Node*, dash::mpd::CommonAttributesElements*, dash::mpd::CommonAttributesElements*) const in MobileVLCKit(libdash_plugin_la-BasicCMParser.o)

我尝试使用x86_64体系结构,但仍然显示很多错误。我不知道如何清除这些错误。任何人都可以帮我吗

最佳答案

可通过Cocoapods获得的MobileVLCKit的当前稳定版本(2.2.2)需要iOS 6.1的libstdc ++运行时环境才能提供向后兼容性。要解决这些错误,您需要设置将MobileVLCKit链接到iOS 6.1的目标的部署版本。

MobileVLCKit的下一个主要版本(3.0.0)将需要iOS 7并使用现代的libc ++,因此不会再发生此问题。另外,也可以使用Pod“MobileVLCKit-prod”(版本2.7.2),这是我们用于自带VLC-iOS的生产版本。

07-26 09:38