这个问题已经有了答案:
Can I use the range operator with if statement in Swift?
5个答案
我需要用swift编码“如果数字在1到5之间”
我试过但没用。

    if myPercent == (1 ... 5) {
        let numberGroup = 1

我该怎么解决?

最佳答案

您可以使用两个条件来检查它是否在边界内:

if myPercent >= 1 && myPercent <= 5 {
    ...
}

07-27 23:08