- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试通过创建 Xamarin.iOS 绑定(bind)项目来使用 native Objective-C 框架。绑定(bind)项目本身编译得很好,但是,引用它的 iOS 应用程序项目,每当我添加一些使用此绑定(bind)库的代码行时都不会构建。错误是:
Error MT5202: Native linking failed. Please review the build log. (MT5202)
我在互联网上搜索过,包括在这里,看到很多人有类似的问题,但它与库编译的体系结构有关。所以可以肯定的是,我已经检查了命令工具中的库,结果是我应该让它在模拟器和真实设备中工作。命令和输出是:
# xcrun -sdk iphoneos lipo -info libDTEFMobile.a
Architectures in the fat file: libDTEFMobile.a are: armv7 armv7s i386
和
# file libDTEFMobile.a
libDTEFMobile.a: Mach-O universal binary with 3 architectures
libDTEFMobile.a (for architecture armv7): current ar archive random library
libDTEFMobile.a (for architecture cputype (12) cpusubtype (11)): current ar archive random library
libDTEFMobile.a (for architecture i386): current ar archive random library
为了确定,我已经检查了绑定(bind)项目中的 linkwith.cs 文件,这就是我所拥有的:
[assembly: LinkWith ("libDTEFMobile.a", LinkTarget.ArmV7 | LinkTarget.ArmV7s | LinkTarget.Simulator, ForceLoad = true)]
我的构建输出的最后日志是:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk -Qunused-arguments -miphoneos-version-min=7.0 -c -o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/mscorlib.dll.armv7.o -x assembler /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/mscorlib.dll.armv7.s
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Wl,-pie -miphoneos-version-min=7.0 -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/M2MobileiOS.exe.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/monotouch.dll.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/mscorlib.dll.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/M2.Mobile.Bindings.iOS.dll.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/registrar.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/main.armv7.o -force_load /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/libDTEFMobile.a -o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/bin/iPhone/Debug/M2MobileiOS.app/M2MobileiOS -framework CFNetwork -framework Foundation -framework UIKit -framework CoreGraphics -lz -liconv -u _mono_pmip -u _monotouch_release_managed_ref -u _monotouch_create_managed_ref -u _monotouch_log /Developer/MonoTouch/SDKs/MonoTouch.iphoneos.sdk/usr/lib/libmonoboehm-2.0.a /Developer/MonoTouch/SDKs/MonoTouch.iphoneos.sdk/usr/lib/libmonotouch-debug.a
Process exited with code 1, command:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Wl,-pie -miphoneos-version-min=7.0 -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/M2MobileiOS.exe.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/monotouch.dll.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/mscorlib.dll.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/M2.Mobile.Bindings.iOS.dll.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/registrar.armv7.o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/main.armv7.o -force_load /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/obj/iPhone/Debug/mtouch-cache/libDTEFMobile.a -o /Users/gutemberg/Projects/M2.Mobile/M2.Mobile.iOS/bin/iPhone/Debug/M2MobileiOS.app/M2MobileiOS -framework CFNetwork -framework Foundation -framework UIKit -framework CoreGraphics -lz -liconv -u _mono_pmip -u _monotouch_release_managed_ref -u _monotouch_create_managed_ref -u _monotouch_log /Developer/MonoTouch/SDKs/MonoTouch.iphoneos.sdk/usr/lib/libmonoboehm-2.0.a /Developer/MonoTouch/SDKs/MonoTouch.iphoneos.sdk/usr/lib/libmonotouch-debug.a
Undefined symbols for architecture armv7:
"_EAAccessoryDidConnectNotification", referenced from:
-[PaxMessager connectByBT] in libDTEFMobile.a(DTEFMobile)
"_EAAccessoryDidDisconnectNotification", referenced from:
-[PaxMessager connectByBT] in libDTEFMobile.a(DTEFMobile)
"_OBJC_CLASS_$_EAAccessoryManager", referenced from:
objc-class-ref in libDTEFMobile.a(DTEFMobile)
"_OBJC_CLASS_$_EASession", referenced from:
objc-class-ref in libDTEFMobile.a(DTEFMobile)
(maybe you meant: _OBJC_CLASS_$_EASessionController)
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error MT5202: Native linking failed. Please review the build log.
at MonoTouch.Application.NativeLink () [0x00000] in <filename unknown>:0
at MonoTouch.Application.BuildApp () [0x00000] in <filename unknown>:0
at MonoTouch.Application.Build () [0x00000] in <filename unknown>:0
at MTouch.Main2 (System.String[] args) [0x00000] in <filename unknown>:0
at MTouch.Main (System.String[] args) [0x00000] in <filename unknown>:0
---------------------- Done ----------------------
而且,我的 Xamarin.iOS 版本详细信息是:
Xamarin Studio
Version 4.0.12 (build 3)
Installation UUID: 7348d641-ed6d-4c8a-b59a-116674e06dfd
Runtime:
Mono 3.2.3 ((no/8d3b4b7)
GTK 2.24.20
GTK# (2.12.0.0)
Package version: 302030000
Apple Developer Tools
Xcode 5.0 (3332.25)
Build 5A1413
Xamarin.iOS
Version: 7.0.0.11 (Trial Edition)
Hash: aa35ba3
Branch:
Build date: 2013-18-09 16:42:48-0400
Build Information
Release ID: 400120003
Git revision: 593d7acb1cb78ceeeb482d5133cf1fe514467e39
Build date: 2013-08-07 20:30:53+0000
Xamarin addins: 25a0858b281923e666b09259ad4746b774e0a873
Operating System
Mac OS X 10.8.5
Darwin Gutembergs-MacBook-Pro.local 12.5.0 Darwin Kernel Version 12.5.0
Mon Jul 29 16:33:49 PDT 2013
root:xnu-2050.48.11~1/RELEASE_X86_64 x86_64
有人知道我是如何让它工作的吗?我尝试使用的库链接到 ExternalAccessory.framework,因此我可以访问蓝牙设备,这就是日志似乎提示的内容......
感谢您的帮助,非常感谢...
古腾堡
最佳答案
您必须链接到 ExternalAccessory 框架,Xamarin.iOS 无法自动确定是否需要为您的绑定(bind)完成此操作。
这很容易做到,只需将 Frameworks 属性添加到绑定(bind)项目中的 LinkWith 属性即可:
[LinkWith (..., Frameworks = "ExternalAccessory")]
关于ios - MT5202 : Native linking failed - Xamarin. iOS 7 - 外部附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18926549/
我没有上传附件以使浏览器正常工作。 一些提示是 here , 其他 there . The docs非常好,但我无法将其转换为 AJAX 上传。 我正在寻找一个 super 简单的 HTML/Java
我有一个应用程序可以收集一些信息并允许用户使用 Android 的 Intent 框架共享这些信息。 到目前为止,它以纯文本形式共享报告:使用 putExtra(Intent.EXTRA_TEXT,
我正在尝试通过我的应用程序发布带有附件图片的消息,所以我使用了以下代码: function yamPost(mytoken) { var msg_Body = jQuery("#myB
我在用户表中使用了多对多关系来使登录用户关注另一个用户,但我自己没有弄清楚,我检查了其他人做了什么,并尝试做类似的事情,并且它有效。在我的方法中,我有: function follow(User $u
我正在用 PHP 创建脚本,其作用是将 IMAP 服务器备份到 MySQL 数据库。 我现在的问题是: 如果电子邮件有附件,附件是嵌入在电子邮件本身中还是服务器上的一个单独文件? 我问的原因是: 我可
我正在使用 RavenDB,在我处理任何附件之前删除了一些带有附件的测试文档,所以我在想它们是否还在磁盘上的某个地方,以及如何轻松地找到它们?。 另一个问题是:当文档被删除时,它有一个附件,附件会被自
当您使用 ACTION_SEND Intent (使用额外的 EXTRA_STREAM)将文件附加到电子邮件时,电子邮件应用程序是否将该附加文件复制到它自己的位置?我的应用程序创建了一个文件并将其附加
所以: // Setup mail class, recipients and body $mailer->AddAttachment('/home/mywebsite/public_html/fil
您好,我需要一个 DnD 解决方案来将 Outlook 邮件附件拖到 Stackpane。 JavaFX/展望 2010 stackpaneDragAndDropZone.setOnDragO
我尝试制作一个 PhpSpreadsheet 文档,然后将他添加到邮件附件中。也许是太热了,但在 phpSpreadsheet 文档中几个小时后,我还没有找到任何东西。 这是我发送邮件的文件 $nam
有什么方法可以动画删除 UITableView 单元格附件吗? 我当前正在显示一个 UITableViewCellAccessoryDisclosureIndicator,但我想在所有可见表格单元格上
我正在编写一个 iPhone 应用程序,它要求我以编程方式发送电子邮件附件。附件是我通过代码创建的 csv 文件。然后,我将文件附加到电子邮件中,附件就会显示在手机上。但是,当我向自己发送电子邮件时,
我正在尝试通过收件箱中的名称“MacroEnabled”访问子文件夹,找到其中的所有附件并将它们保存到本地驱动器。 我使用此代码创建一个名为“Documents”的文件夹并保存附件。然而,在进行第二次
将 corda 升级到版本 4 后,我收到 net.corda.core.transactions.MissingContractAttachments:找不到 com.template.contra
我正在尝试让 Jenkins 将一个或一组文件附加到作业已完成的电子邮件通知中。我不断收到以下错误: 发送电子邮件以触发:成功错误:访问要附加的文件时出错:需要 Ant GLOB 模式,但看到 C:\
我创建了一个由来自 mysql 的数据填充的 UITableView(使用 NSJSONSERIALIZATION)。现在问题是一回事。我检索到的是产品名称。我想要一个附件 View (像单元格右侧的
我开发了一个 Java 客户端应用程序,用于下载我自己的电子邮件。我发现我无法在电子邮件中找到某些附件,特别是当我向经过认证的公司发送电子邮件时收到的作为收据的 XML 文件。我用于下载附件的代码:
我正在将我的 sqlite 数据库转换为 Couchdb。我可以转换数据库并上传到 Couchdb 服务器。除了图像之外的一切。我想将图像作为独立附件上传,我想使用 javascript、REST 和
我编写了一段代码,以便能够启动默认的电子邮件服务提供商,即我的 Outlook。这是我的代码: if(role.getValue().equals("1")) { Desktop desktop =
我正在尝试使用链接上共享的代码使用 python 从 Gmail 下载电子邮件附件 https://gist.github.com/baali/2633554 我想应用时间过滤器+主题过滤器并下载附件
我是一名优秀的程序员,十分优秀!