使用新的 Xcode 11 beta 时。我在运行使用 MapKit 的应用程序时遇到以下崩溃。Xcode 10 工作正常。此外,创建一个新项目并使用 Mapkit 添加地图也可以正常工作。
简单的网络搜索不会产生任何结果。
有什么线索可以解决这个问题吗?
Xcode 11 beta 1:
dyld: Symbol not found: _NavigationConfig_MapLocalizeLabels
Referenced from: /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MapKit.framework/MapKit
Expected in: /Users/Teameh/Library/Developer/Xcode/DerivedData/MyApp-dejdjcwzzweszweqllhjxqbarbsp/Build/Products/Debug-iphonesimulator/Navigation.framework/Navigation
in /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MapKit.framework/MapKit
Xcode 11 beta 3:
dyld: Symbol not found: _NavigationConfig_MapLocalizeLabels
Referenced from: /System/Library/Frameworks/MapKit.framework/MapKit
Expected in: /Users/Teameh/Library/Developer/Xcode/DerivedData/MyApp-dejdjcwzzweszweqllhjxqbarbsp/Build/Products/Debug-iphonesimulator/Navigation.framework/Navigation
in /System/Library/Frameworks/MapKit.framework/MapKit
我已经将代码拆分为多个框架,其中一个称为Navigation.framework
,这可能是问题所在吗?这不是 Xcode 10 的问题。
更新 1
正如评论中所建议的,通过将MapKit添加到嵌入式框架中并不能解决此问题。我认为系统框架不应该添加到嵌入式框架中,这表明这是行不通的。
更新 2
我已经删除了 MapKit 和引用它的所有代码,但仍然遇到同样的崩溃。
正如您所说,您拥有自己的导航框架。Xcode 在您自己的导航框架中寻找_NavigationConfig_MapLocalizeLabels
,而不是 Mapkit 的导航框架。
将导航框架重命名为其他名称应该可以解决问题。