我在我的应用程序中使用 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)