小编Ahi*_*hil的帖子

for 循环内的控制语句违规

我在我的应用程序中使用 SwiftLint。我收到 Control Statement Violation: if, for, guard, , switch, while,并且catch语句不应将其条件或参数不必要地括在括号中。(控制语句)。该代码有什么问题?为什么我会这么担心?提前致谢

   for i in 0..<images.count {

        if(i == images.endIndex - 1) {
            print(i)
        }

    }
Run Code Online (Sandbox Code Playgroud)

for-loop ios swift swiftlint

3
推荐指数
1
解决办法
7380
查看次数

标签 统计

for-loop ×1

ios ×1

swift ×1

swiftlint ×1