- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我决定在我的应用程序中使用 SwiftUI 实现一些 View 。该应用程序向后兼容 iOS 12。
一切都很完美,直到我在 iOS 12 设备上运行它。应用程序立即崩溃,我收到的警告说无法加载 SwiftUI。
dyld: Library not loaded: /System/Library/Frameworks/SwiftUI.framework/SwiftUI
Referenced from: /var/containers/Bundle/Application/MyApp.app/MyApp
Reason: image not found
我在所有正确的位置使用 @available(iOS 13.0, *),并且没有编译器警告,并且应用程序在 iOS 13 上完美运行
如何让它适用于 iOS 12?
最佳答案
事实证明这是一个已知问题,苹果引入了一个新的build设置标志来处理它
Apps containing SwiftUI inside a Swift package might not run onversions of iOS earlier than iOS 13. (53706729)
Workaround:
When back-deploying to an OS which doesn't contain the SwiftUI framework,add the -weak_framework SwiftUI flag to the Other Linker Flags settingin the Build Settings tab. See Frameworks and Weak Linking for moreinformation on weak linking a framework. This workaround doesn't applywhen using dynamically linked Swift packages which import SwiftUI.
将 -weak_framework SwiftUI
添加到其他链接器标志
解决了我的问题
关于ios - 迪尔德 : Library not loaded SwiftUI when app runs on iOS 12 using @available(iOS 13. 0, *),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57907817/
我安装了最新版本的 AFNetworking with Cocoa pods 2.1.0。当我在 6.1 模拟器上运行应用程序时,出现以下错误: dyld: Symbol not found: _NS
我是一名优秀的程序员,十分优秀!