gpt4 book ai didi

Swift 的步幅(从 : , 到 : , 由:)导致 "cannot invoke"

转载 作者:搜寻专家 更新时间:2023-10-31 19:37:32 24 4
gpt4 key购买 nike

我是第一次使用 Swift 的步幅。但是,由于我无法使其正常工作,因此 first 即将成为最后一个:

let boundingBox = createdShape.frame //=SKShapeNode
stride(from: Int(boundingBox.minX), to: Int(boundingBox.maxX), by: 10) {

结果是:

Cannot invoke 'stride' with an argument list of type '(from: Int, to: Int, by: Int, () -> ())'

我做错了什么?

最佳答案

语法应该是:

let boundingBox = createdShape.frame //=SKShapeNode
for x in stride(from: Int(boundingBox.minX), to: Int(boundingBox.maxX), by: 10) {
// TODO: Use x here.
}

关于Swift 的步幅(从 : , 到 : , 由:)导致 "cannot invoke",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40469126/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com