明明简单的before、after甚至indexOf,swift非要用些看似高大上单词来编写函数方法,作得人难受
2018-03-31
For ; ; ; 在Swift3中这种方式已经不能写了,会提示:C-style for statement has been removed in Swift 3。就是说这种C风格的for循环已经不被支持了,甚至连++这样的符号也不支持了,所以我们能使用的就是for-in这种方式了
2018-02-16
swift 4 中 这个where 和 , 都不行了。会报错
error: MyPlayground.playground:28:40: error: top-level statement cannot begin with a closure expression
for case let i in 1...100 , i % 3 == 0 {
^
error: MyPlayground.playground:28:40: error: top-level statement cannot begin with a closure expression
for case let i in 1...100 , i % 3 == 0 {
^
2018-02-12
Unary operator '++' cannot be applied to an operand of type '@lvalue Int'
一元运算符“++”不能应用于操作数的类型“@左值int”
需要改成"aWin+=1"
一元运算符“++”不能应用于操作数的类型“@左值int”
需要改成"aWin+=1"
2017-12-07