- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在尝试使用SwiftUI创建GridView,我们遇到了问题,编译器想要破坏表达式,但我们不知道它到底发生在哪里。以下代码取自 https://github.com/johnsusek/FlowStack
没有支持来解决此问题。我们想让它发挥作用。
[![import SwiftUI
@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
public struct FlowStack<Content>: View where Content: View {
// The number of columns we want to display
var columns: Int
// The total number of items in the stack
var numItems: Int
// The alignment of our columns in the last row
// when they don't fill all the column slots
var alignment: HorizontalAlignment
public let content: (Int, CGFloat) -> Content
public init(
columns: Int,
numItems: Int,
alignment: HorizontalAlignment?,
@ViewBuilder content: @escaping (Int, CGFloat) -> Content) {
self.content = content
self.columns = columns
self.numItems = numItems
self.alignment = alignment ?? HorizontalAlignment.leading
}
public var body : some View {
// A GeometryReader is required to size items in the scroll view
GeometryReader { geometry in
let frameWidth : CGFloat = geometry.size.width/CGFloat(self.columns)
let contentIndex : Int = (self.numItems / self.columns) * self.columns
// Assume a vertical scrolling orientation for the grid
ScrollView(Axis.Set.vertical) {
// VStacks are our rows
VStack(alignment: self.alignment, spacing: 0) {
let count = (self.numItems / self.columns)
ForEach(0 ..< count) { row in
// HStacks are our columns
HStack(spacing: 0) {
let innerCount = (self.columns - 1)
ForEach(0 ... innerCount) { column in
self.content(
// Pass the index to the content
(row * self.columns) + column,
// Pass the column width to the content
frameWidth
)
// Size the content to frame to fill the column
.frame(width: frameWidth)
}
}
}
// Last row
// HStacks are our columns
HStack(spacing: 0) {
let count = (self.numItems % self.columns)
ForEach(0 ..< count) { column in
self.content(
// Pass the index to the content
contentIndex + column,
// Pass the column width to the content
frameWidth
)
// Size the content to frame to fill the column
.frame(width: frameWidth)
}
}
}
}
}
}
}
最佳答案
正如@Mojtaba Hosseini 所建议的那样,ViewBuilders 将不接受函数构建器内的变量声明。我通过创建全局变量进行了修改。请仔细阅读。
import SwiftUI
@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
public struct FlowStack<Content>: View where Content: View {
// The number of columns we want to display
var columns: Int
// The total number of items in the stack
var numItems: Int
// The alignment of our columns in the last row
// when they don't fill all the column slots
var alignment: HorizontalAlignment
var count : Int
var count1 : Int
var innerCount : Int
var contentIndex : Int
var vSpacing : CGFloat = 0.0
var hSpacing : CGFloat = 0.0
var sizeOfItem : Int
public let content: (Int, CGFloat) -> Content
public init(
columns: Int,
numItems: Int,
alignment: HorizontalAlignment?,
@ViewBuilder content: @escaping (Int, CGFloat) -> Content) {
self.content = content
self.columns = columns
self.numItems = numItems
self.alignment = alignment ?? HorizontalAlignment.leading
sizeOfItem = self.numItems / self.columns
contentIndex = sizeOfItem * self.columns
innerCount = self.columns - 1
count1 = self.numItems % self.columns
count = self.numItems / self.columns
}
public var body : some View {
// A GeometryReader is required to size items in the scroll view
GeometryReader { geometry in
// Assume a vertical scrolling orientation for the grid
ScrollView(Axis.Set.vertical) {
// VStacks are our rows
VStack(alignment: self.alignment) {
ForEach(0 ..< self.count) { row in
// HStacks are our columns
HStack() {
ForEach(0 ... self.innerCount,id: \.self) { column in
self.content(
row * self.columns + column,
geometry.size.width/CGFloat(self.columns)
).frame(width: geometry.size.width/CGFloat(self.columns))
// Size the content to frame to fill the column
}
}
}
// Last row
// HStacks are our columns
HStack() {
ForEach(0 ..< self.count) { column in
self.content(
// Pass the index to the content
self.contentIndex + column,
// Pass the column width to the content
geometry.size.width/CGFloat(self.columns)
)
// Size the content to frame to fill the column
.frame(width: geometry.size.width/CGFloat(self.columns))
}
}
}
}
}
}
}
关于ios - 编译器无法在合理的时间 SWIFTUI 中对该表达式进行类型检查?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58444418/
我有一个曾经是 TreeView 控件的菜单,但现在我想让每个项目更加直观,并向树中的每个对象添加更多信息。 我的第一个意图是制作一个代表项目的用户控件,并在运行时将它们添加到面板中。这是一个好方法吗
我是 Docker 新手,想知道是否有可能(并且是一个好主意)在 Docker 容器中进行开发。我的意思是创建一个容器,执行 bash,安装和配置我需要的一切,然后开始在容器内进行开发。 容器将成为我
在 Java 中: Parent obj = new Child(); 我创建了一个 Parent 类型的对象。我假设我只能调用父类中定义的方法。因此,我无法调用 Child 中定义的“附加”方法或访
注意:我省略了其他两个阶段(V 和 W)的代码,示例中不需要。 我很确定,我这样处理“开”和“关”时间的方式并不是一种有效的方式。 我想使用查找表实现“开”和“关”脉动。计时器应与表的当前选定值进行比
当代码中包含 Java instanceof 运算符时,许多人会扬起眉毛并说这是禁忌。例如,在这个 other SO Q&A ,答案说: Note that if you have to use th
我是一名优秀的程序员,十分优秀!