我正在尝试更新指向我管理的代码的 Xamarin.iOS 绑定(bind),现在我遇到了麻烦,因为我已将外部 .a 库引用替换为 .framework。特别是,当我尝试编译绑定(bind)时,我替换的库的本地链接失败。
Native linking error: framework not found SVGKit for architecture arm64/i386/armv7/armv7s (MT5209)
我知道 SVGKit 支持这些架构,但我不确定在从 .framework 引用时如何将它们包含在生成的二进制文件中。
您好,我会这样做来诊断问题
首先我会检查 SVGKit.framework/SVGKit
是 fake framework(伪装成框架的静态库)还是动态的(iOS 8+仅支持)在二进制文件上使用 file
命令
file Foo.framework/Foo
Foo.framework/Foo: Mach-O universal binary with 4 architectures
Foo.framework/Foo (for architecture i386): Mach-O dynamically linked shared library i386
Foo.framework/Foo (for architecture x86_64):Mach-O 64-bit dynamically linked shared library x86_64
Foo.framework/Foo (for architecture armv7): Mach-O dynamically linked shared library arm
Foo.framework/Foo (for architecture arm64): Mach-O 64-bit dynamically linked shared library
file Bar.framework/Bar
Bar.framework/Bar: Mach-O universal binary with 4 architectures
Bar.framework/Bar (for architecture armv7): current ar archive random library
Bar.framework/Bar (for architecture i386): current ar archive random library
Bar.framework/Bar (for architecture x86_64):current ar archive random library
Bar.framework/Bar (for architecture arm64): current ar archive random library
Foo
是动态库,注意 Mach-O
和 Bar
是伪装成框架的静态库 注意 ar
现在,如果它是一个 假框架(静态库),只需获取 SVGKit.framework/SVGKit
二进制文件并将其重命名为 SVGKit.a
并将其添加到您的绑定(bind)项目中,它应该像往常一样工作
如果是动态框架,请按照这些 instructions on how to do it .[0]
[0]:附带说明,一旦 Xamarin Studio 6.0 发布,您将无需手动修改绑定(bind)项目 .csproj
文件,您将能够在 IDE 本身内完成
关于c# - Xamarin.iOS 与第三方框架的绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36584414/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) | Powered by Discuz! X3.4 |