我正在使用 SwiftUI 的拖放修改器。由于 iOS 15 提供了一个onDrag通过预览自定义修改器的选项,我正在使用它,如下所示。
问题:我有一个if #available(iOS 15.0, *)警卫可以选择不同 iOS 版本的视图。但是,不知何故,我在 iOS 14.x 上的应用程序由于EXC_BAD_ACCESS (code=1, address=0x0)错误而崩溃,因为它尝试查找新的 API,但它在 iOS 14 中不存在。
@ViewBuilder
private func getRoutineCard(routine: RoutineInfo) -> some View {
if #available(iOS 15.0, *) {
newRoutineCard(routine: routine)
} else {
oldRoutineCard(routine: routine)
}
}
@available(iOS 15.0, *)
@ViewBuilder
private func newRoutineCard(routine: RoutineInfo) -> some View {
RoutineCard(routine: routine)
// This modifier is what crashes the app on iOS 14.x
// onDrag with a drag preview view not available in iOS 14.x
.onDrag({
dragReorder(draggedRoutine: routine)
}, preview: {
RoutineCardDragPreview(routine: routine)
})
.onDrop(of: [.text], delegate: ReorderDropDelegate(isDragging: $isDragging, draggedItem: $draggedItem, item: routine, haptics: haptics, onMove: updateOrder(routine:order:)))
}
@ViewBuilder
private func oldRoutineCard(routine: RoutineInfo) -> some View {
RoutineCard(routine: routine)
.onDrag { dragReorder(draggedRoutine: routine) }
.onDrop(of: [.text], delegate: ReorderDropDelegate(isDragging: $isDragging, draggedItem: $draggedItem, item: routine, haptics: haptics, onMove: updateOrder(routine:order:)))
}
Run Code Online (Sandbox Code Playgroud)
我正在寻找:一种解决方法,可以根据 iOS 版本在两个视图之间进行选择,而不会导致崩溃。
对于任何偶然发现这一点的人:
在 ViewBuilder 中使用 if #available(iOS 14.0, OSX 11.0, *) 时,应用程序在后备端运行时会崩溃。
Xcode 13.1 及更高版本会发生这种情况。(当前 Xcode 13.2.1)使用 Xcode 13.0 构建进行测试,崩溃消失了。我们认为这是因为 Xcode 中的编译器优化错误。对于开发版本,我们不会发生这些崩溃。
更多信息:https: //swiftui-lab.com/bug-os-check/ 和相同的答案: Swiftui 应用程序在 iOS 14 / 15 上使用不同的 SearchBar (ViewModifier) 崩溃
| 归档时间: |
|
| 查看次数: |
1668 次 |
| 最近记录: |