Cannot debug Swift module/framework embedded in Objective-C app

后端 未结 11 1876
悲哀的现实
悲哀的现实 2021-02-01 02:57

Alternative titles (to aid searching)

  • Cannot debug Swift 2.3 framework linked to an Objective-C app in Xcode 8
  • error in auto-import: f
11条回答
  •  孤城傲影
    2021-02-01 03:35

    I just took 2 days for me to resolve and debugging through print command all the time. Now I got the issue:

    My project is in Swift and I was using objective-C library same as imported in pods for swift(old Objective-C project merged in this one) and was using import IQKeyboardManager as well as import "IQKeyboardManager.h" header as well. That conflicts and deleting the header one resolved my issue finally. You can check with this type of duplicity in libraries.

提交回复
热议问题