dyld:未加载库:@ rpath / CoreNFC.framework / CoreNFC,iOS11和Xcode 9 beta

时间:2017-07-06 10:14:13

标签: iphone swift ios11 xcode9-beta core-nfc

我在 Xcode 9.0 beta 2

中运行CoreNFC sample代码时遇到此错误并且应用程序崩溃
dyld: Library not loaded: @rpath/CoreNFC.framework/CoreNFC
  Referenced from: /var/containers/Bundle/Application/2837709C-C852-4811-B696-38F2725554D4/iOS-11-by-Examples.app/iOS-11-by-Examples
  Reason: image not found

有谁知道如何解决这个问题?

3 个答案:

答案 0 :(得分:5)

由于@Chinchan Zu的评论,我将一些答案组合在一起来解决此问题

  

这里是如何将Core NFC标记为可选stackoverflow question

首先,如本屏幕快照所示,您可以选择在“链接的框架和库”中导入NFCCore。 linking nfcCore as optional

然后在代码内部,使用此#if检查包装代码。这是我使用的课程

#if canImport(CoreNFC)

import Foundation
import CoreNFC

#endif

class NFCManagar: NSObject {
  #if canImport(CoreNFC)
  var session: NFCNDEFReaderSession?
  #endif

  var items = [Item]()
  var completion: ((_ success: Bool, _ error: Error?)-> Void)?

  func beginScanning(items: [Item], completion: @escaping (_ success: Bool, _ error: Error?)-> Void) {
      self.completion = completion
      self.items.removeAll()
      self.items.append(contentsOf: items)

      #if canImport(CoreNFC)
      session = NFCNDEFReaderSession(delegate: self, queue: nil, invalidateAfterFirstRead: true)
      session?.alertMessage = "Hold your iPhone near check in/out device."
      session?.begin()
      #endif
  }

}

#if canImport(CoreNFC)
extension NFCManagar: NFCNDEFReaderSessionDelegate {

  // MARK: - NFCNDEFReaderSessionDelegate

  /// - Tag: processingTagData
  func readerSession(_ session: NFCNDEFReaderSession, didDetectNDEFs messages: [NFCNDEFMessage]) {
          debugPrint("Nfc is detected")
  }

  /// - Tag: endScanning
  func readerSession(_ session: NFCNDEFReaderSession, didInvalidateWithError error: Error) {
      // Check the invalidation reason from the returned error.
      if let readerError = error as? NFCReaderError {
          // Show an alert when the invalidation reason is not because of a success read
          // during a single tag read mode, or user canceled a multi-tag read mode session
          // from the UI or programmatically using the invalidate method call.
          if (readerError.code != .readerSessionInvalidationErrorFirstNDEFTagRead)
              && (readerError.code != .readerSessionInvalidationErrorUserCanceled) {

              debugPrint("Nfc didInvalidateWithError \(error)")
          }
      }

      // A new session instance is required to read new tags.
      self.session = nil
  }
}
#endif

答案 1 :(得分:1)

CoreNFC仅适用于iPhone 7和iPhone 7 Plus设备。确保您在其中一个上运行代码。

有关详细信息,请参阅WWDC会话和相关文档。

https://developer.apple.com/videos/play/wwdc2017/718/

https://developer.apple.com/documentation/corenfc

答案 2 :(得分:0)

对于Xcode 11,将CoreNFC.framework设置为“请勿嵌入”。并用#if检查包装代码。