我认为有几个人遇到过这个问题,那就是枚举。
所以问题很简单,Xcode在枚举之后处理缩进很奇怪,起初我以为这是我的语法,但事实证明它可能不是(我还没有排除)
所以这就是我的代码的样子:
enum Signs : bool {
Positive = true,
Negative = false
};
<This is where Xcode suggest where my next line of code should be, which is one tab more then I expect.>
有人看到这个问题并解决了吗?